I'm using ESP-IDF extension for Visual Studio Code. I create new project by choosing template, but what does ESP-IDF Component directory
means? What I should put there?
Asked
Active
Viewed 249 times
1

vico
- 17,051
- 45
- 159
- 315
1 Answers
0
The IDF build system assembles a firmware from a number of different components. E.g. the gpio system, the http server, etc. are all components. I assume this VSCode configuration is the equivalent of the EXTRA_COMPONENT_DIR
build variable that indicates where the build system should search for components. The components comprising the IDF don't require configuration, but other components you use may.

a2800276
- 3,272
- 22
- 33