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
Perhaps a trivial question this, but I don't understand it fully.
I am building my application using idf.py for an esp32-c6 device.
idf.py
When I do idf.py set-target esp32c6 , this will load the configurations from my sdkconfig.defaults.esp32c6 file right?
idf.py set-target esp32c6
sdkconfig.defaults.esp32c6
Then to build the application : idf.py build.
idf.py build
Does the normal sdkconfig.defaults file get taken into consideration here also?
sdkconfig.defaults
The text was updated successfully, but these errors were encountered:
Yes, both files are considered: first the options from sdkconfig.defaults are applied, then the options from sdkconfig.defaults.TARGET.
Please see this documentation section for more details: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html#target-dependent-sdkconfig-defaults
Sorry, something went wrong.
@igrr Thanks
No branches or pull requests
Answers checklist.
General issue report
Perhaps a trivial question this, but I don't understand it fully.
I am building my application using
idf.py
for an esp32-c6 device.When I do
idf.py set-target esp32c6
, this will load the configurations from mysdkconfig.defaults.esp32c6
file right?Then to build the application :
idf.py build
.Does the normal
sdkconfig.defaults
file get taken into consideration here also?The text was updated successfully, but these errors were encountered: