vico
vico

Reputation: 18221

Setting ESP-IDF Component directory

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?

enter image description here

Upvotes: 4

Views: 3501

Answers (1)

a2800276
a2800276

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

Related Questions