Last active
August 28, 2023 11:09
-
-
Save mcavalcantib/99e915b3ed45eec6d4260aaed7045203 to your computer and use it in GitHub Desktop.
ESP-IDF c_cpp_properties VScode configuration file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "ESP-IDF", | |
| "cStandard": "c11", | |
| "cppStandard": "c++17", | |
| "compileCommands": "${workspaceFolder}/build/compile_commands.json", | |
| "includePath": [ | |
| "${workspaceFolder}/build/config", | |
| "${config:idf.espIdfPath}/components/**", | |
| "${config:idf.espIdfPathWin}/components/**", | |
| "${workspaceFolder}/**" | |
| ], | |
| "defines": [ | |
| "_DEBUG", | |
| "UNICODE", | |
| "_UNICODE" | |
| ], | |
| "browse": { | |
| "path": [ | |
| "${workspaceFolder}/build/config", | |
| "${config:idf.espIdfPath}/components", | |
| "${config:idf.espIdfPathWin}/components", | |
| "${workspaceFolder}" | |
| ], | |
| "limitSymbolsToIncludedHeaders": false | |
| }, | |
| "compilerPath": "C:\\Users\\moise\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe", | |
| "intelliSenseMode": "windows-gcc-x86" | |
| } | |
| ], | |
| "version": 4 | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"${workspaceFolder}/build/config", resolves the missing settings that are already in the sdkconfig"${config:idf.espIdfPath}/components/**"and"${config:idf.espIdfPathWin}/components/**"solves the problem that the VSCode says that cannot find any library from the ESP-IDF