From 0d692c22038fb4c6473a3760b65b8f1c1b64d701 Mon Sep 17 00:00:00 2001 From: Mitchell M Date: Thu, 26 Mar 2026 23:02:29 +0000 Subject: [PATCH] remove .vscode .devcontainer --- .devcontainer/Dockerfile | 13 ------------- .devcontainer/devcontainer.json | 19 ------------------- .gitignore | 4 ++++ .vscode/c_cpp_properties.json | 19 ------------------- .vscode/launch.json | 10 ---------- .vscode/settings.json | 18 ------------------ 6 files changed, 4 insertions(+), 79 deletions(-) delete mode 100644 .devcontainer/Dockerfile delete mode 100644 .devcontainer/devcontainer.json delete mode 100644 .vscode/c_cpp_properties.json delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index dafb8ad..0000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -ARG DOCKER_TAG=latest -FROM espressif/idf:${DOCKER_TAG} - -ENV LC_ALL=C.UTF-8 -ENV LANG=C.UTF-8 - -RUN apt-get update -y && apt-get install udev -y - -RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc - -ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] - -CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 246b79f..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "ESP-IDF QEMU", - "build": { - "dockerfile": "Dockerfile" - }, - "customizations": { - "vscode": { - "settings": { - "terminal.integrated.defaultProfile.linux": "bash", - "idf.gitPath": "/usr/bin/git" - }, - "extensions": [ - "espressif.esp-idf-extension", - "espressif.esp-idf-web" - ] - } - }, - "runArgs": ["--privileged"] -} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9fec4a7..b7527c2 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,7 @@ Desktop.ini *.workspace # General workspace files, can be from various tools *.suo # Visual Studio Solution User Options *.sln.docstates # Visual Studio + +# These can be generated by esp-idf +.vscode/ +.devcontainer/ diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index c56bbd1..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "configurations": [ - { - "name": "ESP-IDF", - "compilerPath": "/home/mitchell/.espressif/tools/xtensa-esp-elf/esp-14.2.0_20251107/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc", - "compileCommands": "${config:idf.buildPath}/compile_commands.json", - "includePath": [ - "${workspaceFolder}/**" - ], - "browse": { - "path": [ - "${workspaceFolder}" - ], - "limitSymbolsToIncludedHeaders": true - } - } - ], - "version": 4 -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 3694ae4..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "type": "gdbtarget", - "request": "attach", - "name": "Eclipse CDT GDB Adapter" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 1f74492..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "C_Cpp.intelliSenseEngine": "default", - "idf.openOcdConfigs": [ - "board/esp32s3-builtin.cfg" - ], - "idf.port": "/dev/ttyACM0", - "idf.currentSetup": "/home/mitchell/.espressif/v6.0/esp-idf", - "idf.customExtraVars": { - "IDF_TARGET": "esp32s3" - }, - "clangd.path": "/home/mitchell/.espressif/tools/esp-clang/esp-19.1.2_20250312/esp-clang/bin/clangd", - "clangd.arguments": [ - "--background-index", - "--query-driver=**", - "--compile-commands-dir=/home/mitchell/cpp/blk_box_control/build" - ], - "idf.flashType": "JTAG" -}