aboutsummaryrefslogtreecommitdiff
path: root/main/puzzle/software/.vscode/c_cpp_properties.json
diff options
context:
space:
mode:
authorThomasAvans <tv.intanker@student.avans.nl>2024-05-11 15:10:16 +0200
committerThomasAvans <tv.intanker@student.avans.nl>2024-05-11 15:10:16 +0200
commit763dd510df1245656f9ee0799c95cc84fc704120 (patch)
tree327ace7d50782043f56bf0811cfa188ca3222851 /main/puzzle/software/.vscode/c_cpp_properties.json
parent488899377dc72989a178173662f95d25fc69c59f (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.json27
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
+}