Skip to content

Instantly share code, notes, and snippets.

@ronnymajani
Created June 1, 2019 01:49
Show Gist options
  • Save ronnymajani/f90c5ae029e1ec489d0981f48f9d5010 to your computer and use it in GitHub Desktop.
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
{
"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