From 54c8dc26fcd36ad328810b251096a55650774eef Mon Sep 17 00:00:00 2001 From: ismail Date: Tue, 26 Aug 2025 12:10:02 +0300 Subject: [PATCH] Add .ESP-IDF vscode configuration files --- test_apps/.vscode/c_cpp_properties.json | 23 +++++++++++++++++++++++ test_apps/.vscode/launch.json | 15 +++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 test_apps/.vscode/c_cpp_properties.json create mode 100644 test_apps/.vscode/launch.json diff --git a/test_apps/.vscode/c_cpp_properties.json b/test_apps/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..fab3c8f --- /dev/null +++ b/test_apps/.vscode/c_cpp_properties.json @@ -0,0 +1,23 @@ +{ + "configurations": [ + { + "name": "ESP-IDF", + "compilerPath": "${config:idf.toolsPath}/tools/xtensa-esp-elf/esp-14.2.0_20241119/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc", + "compileCommands": "${config:idf.buildPath}/compile_commands.json", + "includePath": [ + "${config:idf.espIdfPath}/components/**", + "${config:idf.espIdfPathWin}/components/**", + "${workspaceFolder}/**" + ], + "browse": { + "path": [ + "${config:idf.espIdfPath}/components", + "${config:idf.espIdfPathWin}/components", + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": true + } + } + ], + "version": 4 +} diff --git a/test_apps/.vscode/launch.json b/test_apps/.vscode/launch.json new file mode 100644 index 0000000..2511a38 --- /dev/null +++ b/test_apps/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "gdbtarget", + "request": "attach", + "name": "Eclipse CDT GDB Adapter" + }, + { + "type": "espidf", + "name": "Launch", + "request": "launch" + } + ] +} \ No newline at end of file