We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code does not properly init the structure (to all zero), leads to random initialization failure:
moddable/modules/io/analog/esp32/_analog.c
Line 256 in dd55984
Error message:
E (3505) esp_clk_tree: esp_clk_tree_src_get_freq_hz(21): unknown clk src E (3509) adc_oneshot: adc_oneshot_new_unit(106): clock source not supported
needs to be:
adc_oneshot_unit_init_cfg_t unit_cfg = {};
The text was updated successfully, but these errors were encountered:
Good catch. Thank you. I've applied your fix internally and it will propagate to this public repo in the near future.
Sorry, something went wrong.
This fix is now live. Thanks again.
No branches or pull requests
This code does not properly init the structure (to all zero), leads to random initialization failure:
moddable/modules/io/analog/esp32/_analog.c
Line 256 in dd55984
Error message:
needs to be:
The text was updated successfully, but these errors were encountered: