diff options
author | ThomasAvans <tv.intanker@student.avans.nl> | 2024-05-11 15:10:16 +0200 |
---|---|---|
committer | ThomasAvans <tv.intanker@student.avans.nl> | 2024-05-11 15:10:16 +0200 |
commit | 763dd510df1245656f9ee0799c95cc84fc704120 (patch) | |
tree | 327ace7d50782043f56bf0811cfa188ca3222851 /main/puzzle/software/.vscode/c_cpp_properties.json | |
parent | 488899377dc72989a178173662f95d25fc69c59f (diff) |
Added template ESP-IDF project
Diffstat (limited to 'main/puzzle/software/.vscode/c_cpp_properties.json')
-rw-r--r-- | main/puzzle/software/.vscode/c_cpp_properties.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/main/puzzle/software/.vscode/c_cpp_properties.json b/main/puzzle/software/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..ee1cac1 --- /dev/null +++ b/main/puzzle/software/.vscode/c_cpp_properties.json @@ -0,0 +1,27 @@ +{ + "configurations": [ + { + "name": "ESP-IDF", + "compilerPath": "${config:idf.toolsPathWin}\\tools\\xtensa-esp-elf\\esp-13.2.0_20230928\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe", + "compileCommands": "${workspaceFolder}/build/compile_commands.json", + "includePath": [ + "${config:idf.espIdfPath}/components/**", + "${config:idf.espIdfPathWin}/components/**", + "${config:idf.espAdfPath}/components/**", + "${config:idf.espAdfPathWin}/components/**", + "${workspaceFolder}/**" + ], + "browse": { + "path": [ + "${config:idf.espIdfPath}/components", + "${config:idf.espIdfPathWin}/components", + "${config:idf.espAdfPath}/components/**", + "${config:idf.espAdfPathWin}/components/**", + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": false + } + } + ], + "version": 4 +} |