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?
Setting ESP-IDF Component directory
1.1k Views Asked by vico At
1
There are 1 best solutions below
Related Questions in VISUAL-STUDIO-CODE
- vscode file icons
- Building C# code in VSCode on Mac
- How do I support jasmine and es6 syntax in Visual studio Code?
- JS Code didn't work, trying do a demo in css lessons
- Debug Java in Brackets editor or Visual Studio Code
- Visual Studio Code, C# support on Windows
- What is the use of the Developer Tools in VS Code?
- Option to push disabled in Visual Studio Code
- How do I include 'System.Runtime.Serialization.Json' namespace in my VSCode project on Mac OS X?
- Using System.Web.Http on mac os x
- VSCode intelliSense autocomplete for javascript
- Set language for syntax highlighting in Visual Studio Code
- Import {} from location is not found in VS Code using TypeScript and Angular 2
- Predefined type 'System.Object' is not defined or imported [dnxcore50]
- VS code appending special characters on paste
Related Questions in ESP-IDF
- No Includes directory in Project Explorer
- ngrok with websocket does not work, Sec-WebSocket-Accept not found
- ESP-IDF and FreeRTOS DATA Sheet CODE Compatibility
- Problem with atributte shared_ptr in class base and derived
- Issue with partitions on ESP8266 RTOS SDK 3.4
- How to print in decimal instead of hex using printf with esp-idf
- ESP-IDF: ESP32S3 DFU when USB CDC is active
- idf.py command not recognized on VScode
- Managing Duplicate BLE Notifications on iOS App Re-launch
- esp32c3 entering first stage bootloader programmatically
- Do it on an int or uint type of data! What happens to the operation
- libusb_open() failed with LIBUSB_ERROR_ACCESS when using openocd with Clion and ESP32
- CMAKE & ESP IDF: how to include components as subfolders?
- Building a Smartwatch with Esp 32 and BLE
- (esp-idf) why cannot subscribe "$aws" topic
Related Questions in ESPRESSIF-IDF
- CMAKE & ESP IDF: how to include components as subfolders?
- Does the 16-Bit Espressif BluFi BLE Service UUID 0xFFFF violate the standard?
- Error frame on TWAI initialization in espressif
- Using macros for configuration while hiding source code?
- ESP32 BLE Mesh only connected node can receive on/off commands
- Creating 2D std::vector as input vector for Tensor Flow Lite results in crashing ESP although there is enough heap memory
- How to add arduino libraries to espressif IDE?
- Log idf.py monitor to file
- how can i solve error : E (7870) esp_https_ota: Complete headers were not received
- 'west espressif update' returns a usage error
- How to use psa_import_key correctly
- How can I fix ninja: error: loading 'build.ninja': The system cannot find the file specified
- ESP32-S3 with Coded PHY using Arduino
- IP Address cannot obtain in ESP-IDF?
- memcpy misses one byte when copying to struct
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

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_DIRbuild 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.