Last active
August 12, 2018 08:03
-
-
Save h1romas4/b121a931bfb976f3af5ddda0a506b54f to your computer and use it in GitHub Desktop.
ESP32 用の c_cpp_properties.json 設定
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": "Linux", | |
"includePath": [ | |
"${workspaceRoot}", | |
"~/esp/esp-idf/components/" | |
], | |
"browse": { | |
"limitSymbolsToIncludedHeaders": true, | |
"databaseFilename": "", | |
"path": [ | |
"${workspaceRoot}", | |
"~/esp/esp-idf/components/" | |
] | |
}, | |
"intelliSenseMode": "clang-x64", | |
"compilerPath": "~/esp/xtensa-esp32-elf", | |
"cStandard": "c11", | |
"cppStandard": "c++17" | |
} | |
], | |
"version": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment