Reputation: 18221
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?
Upvotes: 4
Views: 3501
Reputation: 3338
The IDF build system uses "components" to organize and build your ESP-IDF project, identified by these params:
COMPONENT_DIRS – Espressif default components (e.g. GPIO or HTTP, …)
EXTRA_COMPONENT_DIRS – User custom components (e.g. your custom drivers)
Here is their example –
And so the default answer is just to leave it blank 😊
Upvotes: 1