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
esp_afe_config.h
it requires stdbool and esp_err.
code blow will raise error in ide:
#include "esp_afe_config.h" afe_config_t afe_config = AFE_CONFIG_DEFAULT();
but if update code to this, it works. I did not find out why it requires esp_err.h, :(
#include <stdbool.h> #include "esp_err.h" #include "esp_afe_config.h" afe_config_t afe_config = AFE_CONFIG_DEFAULT();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
it requires stdbool and esp_err.
code blow will raise error in ide:
but if update code to this, it works. I did not find out why it requires esp_err.h, :(
The text was updated successfully, but these errors were encountered: