Created
June 1, 2019 01:49
-
-
Save ronnymajani/f90c5ae029e1ec489d0981f48f9d5010 to your computer and use it in GitHub Desktop.
[VSCode properties JSON for ESP-IDF] configuration to put in VSCode's c_cpp_properties.json to add intellisense awareness of the ESP-IDF #esp32 #vscode #intellisense
This file contains 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": "Linux", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"${workspaceFolder}/build/include/**", | |
"${env:IDF_PATH}/components/**", | |
"${env:HOME}/SDK/esp/xtensa-esp32-elf/**" | |
], | |
"defines": [], | |
"compilerPath": "xtensa-esp32-elf-gcc", | |
"cStandard": "c99", | |
"cppStandard": "c++17", | |
"intelliSenseMode": "gcc-x64", | |
"configurationProvider": "vector-of-bool.cmake-tools" | |
} | |
], | |
"version": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment