From 8f616063adc6a911785d7b796273b52d7e32b5af Mon Sep 17 00:00:00 2001 From: unai_71 Date: Sun, 25 Jan 2026 16:36:22 +0000 Subject: [PATCH] removed vscode hardcoded paths. Fixed devcontainer version --- .devcontainer/devcontainer.json | 2 +- .gitignore | 6 ++++++ .vscode/c_cpp_properties.json | 23 ----------------------- 3 files changed, 7 insertions(+), 24 deletions(-) delete mode 100644 .vscode/c_cpp_properties.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 112a852..bad0dc8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "ESP-IDF Dev Environment", - "image": "espressif/idf:release-v5.5.2", // Actualizado + "image": "espressif/idf:release-v5.5", // Actualizado "customizations": { "vscode": { diff --git a/.gitignore b/.gitignore index 7805557..0492708 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,12 @@ # Directory metadata .directory +# removed vscode files from : +.vscode/c_cpp_properties.json +.vscode/settings.json +.vscode/launch.json +build/ + # Temporary files *~ *.swp diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index b7d20b2..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "configurations": [ - { - "name": "ESP-IDF", - "compilerPath": "${config:idf.toolsPath}/tools/xtensa-esp-elf/esp-14.2.0_20251107/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 -}