From c71f0a702d53b1e84af8d262cc106e93efffdff1 Mon Sep 17 00:00:00 2001 From: Rune Harlyk Date: Sat, 30 Mar 2024 21:53:14 +0100 Subject: [PATCH] Adds vscode settings --- esp32/.vscode/c_cpp_properties.json | 20 ++++++++++++-------- esp32/.vscode/settings.json | 5 +++++ 2 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 esp32/.vscode/settings.json diff --git a/esp32/.vscode/c_cpp_properties.json b/esp32/.vscode/c_cpp_properties.json index 6ad9ec3..5d94ef7 100644 --- a/esp32/.vscode/c_cpp_properties.json +++ b/esp32/.vscode/c_cpp_properties.json @@ -217,6 +217,8 @@ "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/dio_qspi/include", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/cores/esp32", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/variants/esp32", + "C:/data/repos/Hardware/Spot Micro - Leika/esp32/lib/spot_micro_kinematcs_cpp/include", + "C:/data/repos/Hardware/Spot Micro - Leika/esp32/lib/spot_micro_kinematcs_cpp", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/libraries/ArduinoOTA/src", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/libraries/AsyncUDP/src", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/libraries/BLE/src", @@ -455,6 +457,8 @@ "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/dio_qspi/include", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/cores/esp32", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/variants/esp32", + "C:/data/repos/Hardware/Spot Micro - Leika/esp32/lib/spot_micro_kinematcs_cpp/include", + "C:/data/repos/Hardware/Spot Micro - Leika/esp32/lib/spot_micro_kinematcs_cpp", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/libraries/ArduinoOTA/src", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/libraries/AsyncUDP/src", "C:/Users/Rune/.platformio/packages/framework-arduinoespressif32/libraries/BLE/src", @@ -520,20 +524,20 @@ "FACTORY_MQTT_CLEAN_SESSION=true", "FACTORY_MQTT_MAX_TOPIC_LENGTH=128", "FACTORY_JWT_SECRET=\"#{random}-#{random}\"", - "USE_BATTERY=1", - "USE_NTP=1", - "USE_SECURITY=1", - "USE_UPLOAD_FIRMWARE=1", - "USE_DOWNLOAD_FIRMWARE=1", - "USE_ANALYTICS=1", + "FT_BATTERY=0", + "FT_NTP=1", + "FT_SECURITY=1", + "FT_MQTT=0", + "FT_SLEEP=0", + "FT_UPLOAD_FIRMWARE=1", + "FT_DOWNLOAD_FIRMWARE=1", + "FT_ANALYTICS=1", "BUILD_TARGET=\"esp32dev\"", "ESP32SVELTEKIT_RUNNING_CORE=0", "EMBED_WWW", "ENABLE_CORS", - "SERIAL_INFO", "CORS_ORIGIN=\"*\"", "CORE_DEBUG_LEVEL=5", - "register=", "LED_BUILTIN=2", "KEY_BUILTIN=0", "HAVE_CONFIG_H", diff --git a/esp32/.vscode/settings.json b/esp32/.vscode/settings.json new file mode 100644 index 0000000..930ff05 --- /dev/null +++ b/esp32/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "*.tcc": "cpp" + } +} \ No newline at end of file