I have copied the example code and it failed to build. Latest IDF, target is esp32c6, Linux.
https://github.com/espressif/esp-idf/tr ... 2_test_app
I then make it as simple as possible (removed KConfig.projbuild) and it still failed. See Note below.
I have opened an issue.
The error:
components/esp_system/startup_funcs.c:33:10: fatal error: private/esp_coexist_internal.h: No such file or directory
The quick workaround is to disable Coexistence. It produces a clean build just for testing V2.
Code: Select all
idf.py menuconfig
Project configuration for components not included in the build --->
Wireless Coexistence --->
[*] Software controls WiFi/Bluetooth coexistence (default value) FAILS
But:
[ ] Software controls WiFi/Bluetooth coexistence (default value) WORKS
Side Note:
With Build System V2 Kconfig.projbuild must be Upper-case K and the other letters lower-case.
I presume that the example's K
Config.projbuild is intentionally misspelled fort testing.
Burturm