From 4f3030b5fb73f11bac61ddb87dbfa95b58b26246 Mon Sep 17 00:00:00 2001 From: XupaMisto Date: Sat, 27 Dec 2025 12:57:35 +0000 Subject: [PATCH] Update main code (led_driver) + build options --- .vscode/.gitignore | 0 .vscode/c_cpp_properties.json | 21 --------------------- .vscode/settings.json | 31 ------------------------------- 3 files changed, 52 deletions(-) delete mode 100644 .vscode/.gitignore delete mode 100644 .vscode/c_cpp_properties.json delete mode 100644 .vscode/settings.json diff --git a/.vscode/.gitignore b/.vscode/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 0b66cb4..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "configurations": [ - { - "name": "ESP-IDF", - "compilerPath": "C:/esp/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe", - "compileCommands": "${workspaceFolder}/build/compile_commands.json", - "includePath": [ - "${workspaceFolder}/**", - "C:/ESP/frameworks/v5.1.6/esp-idf/components/**" - ], - "defines": [ - "ESP_PLATFORM", - "IDF_VER=\"v5.1.6\"" - ], - "cStandard": "c11", - "cppStandard": "c++17", - "intelliSenseMode": "gcc-x64" - } - ], - "version": 4 -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f8db8b2..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "files.associations": { - "*.c": "c", - "*.h": "c" - }, - - "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools", - "C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json", - - "C_Cpp.default.includePath": [ - "${workspaceFolder}/**", - "C:/ESP/frameworks/v5.1.6/esp-idf/components/**" - ], - - "idf.espIdfPath": "C:/Users/carec/esp/v5.1.6/esp-idf", - "idf.pythonBinPath": "C:/Users/carec/.espressif/python_env/idf5.1_py3.11_env/Scripts/python.exe", - "idf.toolsPath": "C:/Users/carec/.espressif/tools", - - "idf.showOnboardingOnInit": false, - "idf.adapterTargetName": "esp32", - "idf.portWin": "COM3", - "idf.flashType": "UART", - - "idf.buildDir": "${workspaceFolder}/build", - "idf.flashDir": "${workspaceFolder}/build", - - "cmake.buildDirectory": "${workspaceFolder}/build", - "cmake.configureSettings": { - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" - } -}