diff --git a/Network.cpp b/Network.cpp index bf67bc6..850fc2d 100644 --- a/Network.cpp +++ b/Network.cpp @@ -547,14 +547,12 @@ bool Network::publishString(const char* prefix, const char *topic, const char *v void Network::publishHASSConfig(char* deviceType, const char* baseTopic, char* name, char* uidString, const bool& hasKeypad, char* lockAction, char* unlockAction, char* openAction, char* lockedState, char* unlockedState) { - const int jsonBufferSize = 2048; - String discoveryTopic = _preferences->getString(preference_mqtt_hass_discovery); if (discoveryTopic != "") { - char* jsonOut = new char[jsonBufferSize]; - DynamicJsonDocument json(jsonBufferSize); + char* jsonOut = new char[JSON_BUFFER_SIZE]; + DynamicJsonDocument json(JSON_BUFFER_SIZE); auto dev = json.createNestedObject("dev"); auto ids = dev.createNestedArray("ids"); @@ -583,108 +581,115 @@ void Network::publishHASSConfig(char* deviceType, const char* baseTopic, char* n _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, jsonOut); + // Battery critical - String configJSON = "{\"dev\":{\"ids\":[\"nuki_"; - configJSON.concat(uidString); - configJSON.concat("\"],\"mf\":\"Nuki\",\"mdl\":\""); - configJSON.concat(deviceType); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat("\"},\"~\":\""); - configJSON.concat(baseTopic); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat(" battery low\",\"unique_id\":\""); - configJSON.concat(uidString); - configJSON.concat("_battery_low\",\"dev_cla\":\"battery\",\"ent_cat\":\"diagnostic\",\"pl_off\":\"0\",\"pl_on\":\"1\",\"stat_t\":\"~"); - configJSON.concat(mqtt_topic_battery_critical); - configJSON.concat("\"}"); + json.clear(); + dev = json.createNestedObject("dev"); + ids = dev.createNestedArray("ids"); + ids.add(String("nuki_") + uidString); + json["dev"]["mf"] = "Nuki"; + json["dev"]["mdl"] = deviceType; + json["dev"]["name"] = name; + json["~"] = baseTopic; + json["name"] = name + String(" battery low"); + json["unique_id"] = String(uidString) + "_battery_low"; + json["dev_cla"] = "battery"; + json["ent_cat"] = "diagnostic"; + json["plf_off"] = "0"; + json["plf_on"] = "1"; + json["stat_t"] = String("~") + mqtt_topic_battery_critical; + + serializeJson(json, reinterpret_cast(*jsonOut)); path = discoveryTopic; path.concat("/binary_sensor/"); path.concat(uidString); path.concat("/battery_low/config"); - _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, configJSON.c_str()); + _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, jsonOut); + + String configJSON = ""; if(hasKeypad) { // Keypad battery critical - configJSON = "{\"dev\":{\"ids\":[\"nuki_"; - configJSON.concat(uidString); - configJSON.concat("\"],\"mf\":\"Nuki\",\"mdl\":\""); - configJSON.concat(deviceType); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat("\"},\"~\":\""); - configJSON.concat(baseTopic); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat(" keypad battery low\",\"unique_id\":\""); - configJSON.concat(uidString); - configJSON.concat( - "_keypad_battery_low\",\"dev_cla\":\"battery\",\"ent_cat\":\"diagnostic\",\"pl_off\":\"0\",\"pl_on\":\"1\",\"stat_t\":\"~"); - configJSON.concat(mqtt_topic_battery_keypad_critical); - configJSON.concat("\"}"); + json.clear(); + dev = json.createNestedObject("dev"); + ids = dev.createNestedArray("ids"); + ids.add(String("nuki_") + uidString); + json["dev"]["mf"] = "Nuki"; + json["dev"]["mdl"] = deviceType; + json["dev"]["name"] = name; + json["~"] = baseTopic; + json["name"] = name + String(" keypad battery low"); + json["unique_id"] = String(uidString) + "_keypad_battery_low"; + json["dev_cla"] = "battery"; + json["ent_cat"] = "diagnostic"; + json["plf_off"] = "0"; + json["plf_on"] = "1"; + json["stat_t"] = String("~") + mqtt_topic_battery_keypad_critical; + + serializeJson(json, reinterpret_cast(*jsonOut)); path = discoveryTopic; path.concat("/binary_sensor/"); path.concat(uidString); path.concat("/keypad_battery_low/config"); - _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, configJSON.c_str()); + _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, jsonOut); } // Battery voltage - configJSON = "{\"dev\":{\"ids\":[\"nuki_"; - configJSON.concat(uidString); - configJSON.concat("\"],\"mf\":\"Nuki\",\"mdl\":\""); - configJSON.concat(deviceType); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat("\"},\"~\":\""); - configJSON.concat(baseTopic); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat(" battery voltage\",\"unique_id\":\""); - configJSON.concat(uidString); - configJSON.concat( - "_battery_voltage\",\"dev_cla\":\"voltage\",\"ent_cat\":\"diagnostic\",\"stat_t\":\"~"); - configJSON.concat(mqtt_topic_battery_voltage); - configJSON.concat("\",\"stat_cla\":\"measurement\",\"unit_of_meas\":\"V\""); - configJSON.concat("}"); + json.clear(); + dev = json.createNestedObject("dev"); + ids = dev.createNestedArray("ids"); + ids.add(String("nuki_") + uidString); + json["dev"]["mf"] = "Nuki"; + json["dev"]["mdl"] = deviceType; + json["dev"]["name"] = name; + json["~"] = baseTopic; + json["name"] = name + String(" battery voltage"); + json["unique_id"] = String(uidString) + "_battery_voltage"; + json["dev_cla"] = "voltage"; + json["stat_cla"] = "measurement"; + json["unit_of_meas"] = "V"; + json["ent_cat"] = "diagnostic"; + json["plf_off"] = "0"; + json["plf_on"] = "1"; + json["stat_t"] = String("~") + mqtt_topic_battery_voltage; + + serializeJson(json, reinterpret_cast(*jsonOut)); path = discoveryTopic; path.concat("/sensor/"); path.concat(uidString); path.concat("/battery_voltage/config"); - _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, configJSON.c_str()); + _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, jsonOut); // Trigger - configJSON = "{\"dev\":{\"ids\":[\"nuki_"; - configJSON.concat(uidString); - configJSON.concat("\"],\"mf\":\"Nuki\",\"mdl\":\""); - configJSON.concat(deviceType); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat("\"},\"~\":\""); - configJSON.concat(baseTopic); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat(" trigger\",\"unique_id\":\""); - configJSON.concat(uidString); - configJSON.concat( - "_trigger\",\"ent_cat\":\"diagnostic\",\"stat_t\":\"~"); - configJSON.concat(mqtt_topic_lock_trigger); - configJSON.concat("\",\"enabled_by_default\":true}"); + json.clear(); + dev = json.createNestedObject("dev"); + ids = dev.createNestedArray("ids"); + ids.add(String("nuki_") + uidString); + json["dev"]["mf"] = "Nuki"; + json["dev"]["mdl"] = deviceType; + json["dev"]["name"] = name; + json["~"] = baseTopic; + json["name"] = name + String(" trigger"); + json["unique_id"] = String(uidString) + "_trigger"; + json["ent_cat"] = "diagnostic"; + json["enabled_by_default"] = "true"; + json["stat_t"] = String("~") + mqtt_topic_lock_trigger; + + serializeJson(json, reinterpret_cast(*jsonOut)); path = discoveryTopic; path.concat("/sensor/"); path.concat(uidString); path.concat("/trigger/config"); - _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, configJSON.c_str()); + _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, jsonOut); delete jsonOut; } @@ -698,31 +703,36 @@ void Network::publishHASSConfigBatLevel(char *deviceType, const char *baseTopic, if (discoveryTopic != "") { + char* jsonOut = new char[JSON_BUFFER_SIZE]; + DynamicJsonDocument json(JSON_BUFFER_SIZE); + // Battery level - String configJSON = "{\"dev\":{\"ids\":[\"nuki_"; - configJSON.concat(uidString); - configJSON.concat("\"],\"mf\":\"Nuki\",\"mdl\":\""); - configJSON.concat(deviceType); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat("\"},\"~\":\""); - configJSON.concat(baseTopic); - configJSON.concat("\",\"name\":\""); - configJSON.concat(name); - configJSON.concat(" battery level\",\"unique_id\":\""); - configJSON.concat(uidString); - configJSON.concat( - "_battery_level\",\"dev_cla\":\"battery\",\"ent_cat\":\"diagnostic\",\"stat_t\":\"~"); - configJSON.concat(mqtt_topic_battery_level); - configJSON.concat("\",\"stat_cla\":\"measurement\",\"unit_of_meas\":\"%\""); - configJSON.concat("}"); + json.clear(); + auto dev = json.createNestedObject("dev"); + auto ids = dev.createNestedArray("ids"); + ids.add(String("nuki_") + uidString); + json["dev"]["mf"] = "Nuki"; + json["dev"]["mdl"] = deviceType; + json["dev"]["name"] = name; + json["~"] = baseTopic; + json["name"] = name + String(" battery level"); + json["unique_id"] = String(uidString) + "_battery_level"; + json["dev_cla"] = "battery"; + json["stat_cla"] = "measurement"; + json["unit_of_meas"] = "%"; + json["ent_cat"] = "diagnostic"; + json["stat_t"] = String("~") + mqtt_topic_battery_level; + + serializeJson(json, reinterpret_cast(*jsonOut)); String path = discoveryTopic; path.concat("/sensor/"); path.concat(uidString); - path.concat("/battery_level/config"); + path.concat("/battery_voltage/config"); - _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, configJSON.c_str()); + _device->mqttPublish(path.c_str(), MQTT_QOS_LEVEL, true, jsonOut); + + delete jsonOut; } } diff --git a/Network.h b/Network.h index f560527..38325c5 100644 --- a/Network.h +++ b/Network.h @@ -12,6 +12,8 @@ enum class NetworkDeviceType W5500 }; +#define JSON_BUFFER_SIZE 2048 + class Network { public: diff --git a/bla/.cmake/api/v1/query/cache-v2 b/bla/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/bla/.cmake/api/v1/query/cmakeFiles-v1 b/bla/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/bla/.cmake/api/v1/query/codemodel-v2 b/bla/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/bla/.cmake/api/v1/query/toolchains-v1 b/bla/.cmake/api/v1/query/toolchains-v1 new file mode 100644 index 0000000..e69de29 diff --git a/bla/.cmake/api/v1/reply/cache-v2-3af8e62f933d67d1504f.json b/bla/.cmake/api/v1/reply/cache-v2-3af8e62f933d67d1504f.json new file mode 100644 index 0000000..1205f99 --- /dev/null +++ b/bla/.cmake/api/v1/reply/cache-v2-3af8e62f933d67d1504f.json @@ -0,0 +1,17767 @@ +{ + "entries" : + [ + { + "name" : "ARDUINO_BOARD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Arduino board for which the project is build for" + }, + { + "name" : "STRINGS", + "value" : "**** Arduino AVR Boards ****;Arduino Yn [avr.yun];Arduino Uno [avr.uno];Arduino Duemilanove or Diecimila [avr.diecimila];Arduino Nano [avr.nano];Arduino Mega or Mega 2560 [avr.mega];Arduino Mega ADK [avr.megaADK];Arduino Leonardo [avr.leonardo];Arduino Leonardo ETH [avr.leonardoeth];Arduino Micro [avr.micro];Arduino Esplora [avr.esplora];Arduino Mini [avr.mini];Arduino Ethernet [avr.ethernet];Arduino Fio [avr.fio];Arduino BT [avr.bt];LilyPad Arduino USB [avr.LilyPadUSB];LilyPad Arduino [avr.lilypad];Arduino Pro or Pro Mini [avr.pro];Arduino NG or older [avr.atmegang];Arduino Robot Control [avr.robotControl];Arduino Robot Motor [avr.robotMotor];Arduino Gemma [avr.gemma];Adafruit Circuit Playground [avr.circuitplay32u4cat];Arduino Yn Mini [avr.yunmini];Arduino Industrial 101 [avr.chiwawa];Linino One [avr.one];Arduino Uno WiFi [avr.unowifi];**** esp32 ****;ESP32S3 Dev Module [esp32.esp32s3];ESP32C3 Dev Module [esp32.esp32c3];ESP32S2 Dev Module [esp32.esp32s2];ESP32 Dev Module [esp32.esp32];ESP32-WROOM-DA Module [esp32.esp32da];ESP32 Wrover Module [esp32.esp32wrover];ESP32 PICO-D4 [esp32.pico32];ESP32-S3-Box [esp32.esp32s3box];ESP32-S3-USB-OTG [esp32.esp32s3usbotg];ESP32S3 CAM LCD [esp32.esp32s3camlcd];ESP32S2 Native USB [esp32.esp32s2usb];ESP32 Wrover Kit (all versions) [esp32.esp32wroverkit];UM TinyPICO [esp32.tinypico];UM FeatherS2 [esp32.feathers2];UM FeatherS2 Neo [esp32.feathers2neo];UM TinyS2 [esp32.tinys2];UM RMP [esp32.rmp];UM TinyS3 [esp32.tinys3];UM PROS3 [esp32.pros3];UM FeatherS3 [esp32.feathers3];S.ODI Ultra v1 [esp32.S_ODI_Ultra];microS2 [esp32.micros2];MagicBit [esp32.magicbit];Turta IoT Node [esp32.turta_iot_node];TTGO LoRa32-OLED [esp32.ttgo-lora32];TTGO T1 [esp32.ttgo-t1];TTGO T7 V1.3 Mini32 [esp32.ttgo-t7-v13-mini32];TTGO T7 V1.4 Mini32 [esp32.ttgo-t7-v14-mini32];TTGO T-OI PLUS RISC-V ESP32-C3 [esp32.ttgo-t-oi-plus];XinaBox CW02 [esp32.cw02];SparkFun ESP32 Thing [esp32.esp32thing];SparkFun ESP32 Thing Plus [esp32.esp32thing_plus];SparkFun ESP32 Thing Plus C [esp32.esp32thing_plus_c];SparkFun ESP32-S2 Thing Plus [esp32.sparkfun_esp32s2_thing_plus];SparkFun ESP32 MicroMod [esp32.esp32micromod];SparkFun LoRa Gateway 1-Channel [esp32.sparkfun_lora_gateway_1-channel];SparkFun ESP32 IoT RedBoard [esp32.sparkfun_esp32_iot_redboard];u-blox NINA-W10 series (ESP32) [esp32.nina_w10];u-blox NORA-W10 series (ESP32-S3) [esp32.nora_w10];Widora AIR [esp32.widora-air];Electronic SweetPeas - ESP320 [esp32.esp320];Nano32 [esp32.nano32];LOLIN D32 [esp32.d32];LOLIN D32 PRO [esp32.d32_pro];LOLIN C3 Mini [esp32.lolin_c3_mini];LOLIN S2 Mini [esp32.lolin_s2_mini];LOLIN S2 PICO [esp32.lolin_s2_pico];LOLIN S3 [esp32.lolin_s3];WEMOS LOLIN32 [esp32.lolin32];WEMOS LOLIN32 Lite [esp32.lolin32-lite];Dongsen Tech Pocket 32 [esp32.pocket_32];WeMos WiFi&Bluetooth Battery [esp32.WeMosBat];ESPea32 [esp32.espea32];Noduino Quantum [esp32.quantum];Node32s [esp32.node32s];Hornbill ESP32 Dev [esp32.hornbill32dev];Hornbill ESP32 Minima [esp32.hornbill32minima];DFRobot Beetle ESP32-C3 [esp32.dfrobot_beetle_esp32c3];DFRobot Firebeetle 2 ESP32-S3 [esp32.dfrobot_firebeetle2_esp32s3];FireBeetle-ESP32 [esp32.firebeetle32];IntoRobot Fig [esp32.intorobot-fig];Onehorse ESP32 Dev Module [esp32.onehorse32dev];Adafruit ESP32 Feather [esp32.featheresp32];Adafruit Metro ESP32-S2 [esp32.adafruit_metro_esp32s2];Adafruit MagTag 2.9\" [esp32.adafruit_magtag29_esp32s2];Adafruit FunHouse [esp32.adafruit_funhouse_esp32s2];Adafruit Feather ESP32-S2 [esp32.adafruit_feather_esp32s2];Adafruit Feather ESP32-S2 TFT [esp32.adafruit_feather_esp32s2_tft];Adafruit QT Py ESP32-S2 [esp32.adafruit_qtpy_esp32s2];Adafruit QT Py ESP32-C3 [esp32.adafruit_qtpy_esp32c3];Adafruit QT Py ESP32 [esp32.adafruit_qtpy_esp32_pico];Adafruit Feather ESP32 V2 [esp32.adafruit_feather_esp32_v2];Adafruit Feather ESP32-S3 2MB PSRAM [esp32.adafruit_feather_esp32s3];Adafruit Feather ESP32-S3 No PSRAM [esp32.adafruit_feather_esp32s3_nopsram];Adafruit Feather ESP32-S3 TFT [esp32.adafruit_feather_esp32s3_tft];Adafruit QT Py ESP32-S3 No PSRAM [esp32.adafruit_qtpy_esp32s3_nopsram];Adafruit ItsyBitsy ESP32 [esp32.adafruit_itsybitsy_esp32];NodeMCU-32S [esp32.nodemcu-32s];MH ET LIVE ESP32DevKIT [esp32.mhetesp32devkit];MH ET LIVE ESP32MiniKit [esp32.mhetesp32minikit];ESP32vn IoT Uno [esp32.esp32vn-iot-uno];DOIT ESP32 DEVKIT V1 [esp32.esp32doit-devkit-v1];DOIT ESPduino32 [esp32.esp32doit-espduino];OLIMEX ESP32-EVB [esp32.esp32-evb];OLIMEX ESP32-GATEWAY [esp32.esp32-gateway];OLIMEX ESP32-PoE [esp32.esp32-poe];OLIMEX ESP32-PoE-ISO [esp32.esp32-poe-iso];OLIMEX ESP32-DevKit-LiPo [esp32.esp32-DevKitLipo];ThaiEasyElec's ESPino32 [esp32.espino32];M5Stack-Core-ESP32 [esp32.m5stack-core-esp32];M5Stack-FIRE [esp32.m5stack-fire];M5Stack-Station [esp32.m5stack-station];M5Stick-C [esp32.m5stick-c];M5Stack-ATOM [esp32.m5stack-atom];M5Stack-Core2 [esp32.m5stack-core2];M5Stack-Timer-CAM [esp32.m5stack-timer-cam];M5Stack-CoreInk [esp32.m5stack-coreink];ODROID ESP32 [esp32.odroid_esp32];Heltec WiFi Kit 32 [esp32.heltec_wifi_kit_32];Heltec WiFi Kit 32(V3) [esp32.heltec_wifi_kit_32_V3];Heltec WiFi LoRa 32 [esp32.heltec_wifi_lora_32];Heltec WiFi LoRa 32(V2) [esp32.heltec_wifi_lora_32_V2];Heltec WiFi LoRa 32(V3) / Wireless shell(V3) / Wireless stick lite (V3) [esp32.heltec_wifi_lora_32_V3];Heltec Wireless Stick [esp32.heltec_wireless_stick];Heltec Wireless Stick Lite [esp32.heltec_wireless_stick_lite];ESPectro32 [esp32.espectro32];Microduino-CoreESP32 [esp32.CoreESP32];ALKS ESP32 [esp32.alksesp32];WiPy 3.0 [esp32.wipy3];WT32-ETH01 Ethernet Module [esp32.wt32-eth01];BPI-BIT [esp32.bpi-bit];BPI-Leaf-S3 [esp32.bpi_leaf_s3];Silicognition wESP32 [esp32.wesp32];T-Beam [esp32.t-beam];D-duino-32 [esp32.d-duino-32];LoPy [esp32.lopy];LoPy4 [esp32.lopy4];OROCA EduBot [esp32.oroca_edubot];ESP32 FM DevKit [esp32.fm-devkit];Frog Board ESP32 [esp32.frogboard];AI Thinker ESP32-CAM [esp32.esp32cam];TTGO T-Watch [esp32.twatch];WEMOS D1 MINI ESP32 [esp32.d1_mini32];WEMOS D1 R32 [esp32.d1_uno32];Pycom GPy [esp32.gpy];VintLabs ESP32 Devkit [esp32.vintlabs-devkit-v1];HONEYLemon [esp32.honeylemon];MGBOT IOTIK 32A [esp32.mgbot-iotik32a];MGBOT IOTIK 32B [esp32.mgbot-iotik32b];Piranha ESP-32 [esp32.piranha_esp-32];Metro ESP-32 [esp32.metro_esp-32];Senses's WEIZEN [esp32.sensesiot_weizen];KITS ESP32 EDU [esp32.kits-edu];Labplus mPython [esp32.mPython];INEX OpenKB [esp32.OpenKB];WiFiduino32 [esp32.wifiduino32];WiFiduinoV2 [esp32.wifiduino32c3];WiFiduino32S3 [esp32.wifiduino32s3];IMBRIOS LOGSENS_V1P1 [esp32.imbrios-logsens-v1p1];ProtoCentral HealthyPi 4 [esp32.healthypi4];ET-Board [esp32.ET-Board];Denky [esp32.ch_denky];uPesy ESP32 Wrover DevKit [esp32.uPesy_wrover];uPesy ESP32 Wroom DevKit [esp32.uPesy_wroom];KB32-FT [esp32.kb32];Deneyap Kart [esp32.deneyapkart];Deneyap Kart 1A [esp32.deneyapkart1A];Deneyap Kart 1A v2 [esp32.deneyapkart1Av2];Deneyap Mini [esp32.deneyapmini];Deneyap Mini v2 [esp32.deneyapminiv2];Deneyap Kart G [esp32.deneyapkartg];Trueverit ESP32 Universal IoT Driver [esp32.esp32-trueverit-iot-driver];Trueverit ESP32 Universal IoT Driver MK II [esp32.esp32-trueverit-iot-driver-mkii];ATMegaZero ESP32-S2 [esp32.atmegazero_esp32s2];Franzininho WiFi [esp32.franzininho_wifi_esp32s2];Franzininho WiFi MSC [esp32.franzininho_wifi_msc_esp32s2];TAMC Termod S3 [esp32.tamc_termod_s3];DPU ESP32 [esp32.dpu_esp32];Sonoff DUALR3 [esp32.sonoff_dualr3];Lion:Bit Dev Board [esp32.lionbit];Watchy [esp32.watchy];AirM2M_CORE_ESP32C3 [esp32.AirM2M_CORE_ESP32C3];XIAO_ESP32C3 [esp32.XIAO_ESP32C3];Connaxio's Espoir [esp32.connaxio_espoir];CNRS AW2ETH [esp32.aw2eth];Department of Alchemy MiniMain ESP32-S2 [esp32.department_of_alchemy_minimain_esp32s2];Bee Motion S3 [esp32.Bee_Motion_S3];Bee Motion [esp32.Bee_Motion];Bee Motion Mini [esp32.Bee_Motion_Mini];Bee S3 [esp32.Bee_S3];unPhone 7 [esp32.unphone7];unPhone 8 [esp32.unphone8];unPhone 9 [esp32.unphone9];Cytron Maker Feather AIoT S3 [esp32.cytron_maker_feather_aiot_s3];RedPill(+) ESP32-S3 [esp32.redpill_esp32s3];ESP-C3-M1-I-Kit [esp32.esp32c3m1IKit]" + } + ], + "type" : "STRING", + "value" : "ESP32 Dev Module [esp32.esp32]" + }, + { + "name" : "ARDUINO_CMAKE_ASM_FILES_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ASM Source Files Pattern" + } + ], + "type" : "STRING", + "value" : "*.[sS]" + }, + { + "name" : "ARDUINO_CMAKE_CXX_FILES_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CXX Source Files Pattern" + } + ], + "type" : "STRING", + "value" : "*.cc;*.cpp;*.cxx" + }, + { + "name" : "ARDUINO_CMAKE_C_FILES_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "C Source Files Pattern" + } + ], + "type" : "STRING", + "value" : "*.c" + }, + { + "name" : "ARDUINO_CMAKE_HEADER_FILES_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Header Files Pattern" + } + ], + "type" : "STRING", + "value" : "*.h;*.hh;*.hpp;*.hxx" + }, + { + "name" : "ARDUINO_CMAKE_HEADER_FILES_SUFFIX_REGEX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Header Files suffix used for regular expression" + } + ], + "type" : "STRING", + "value" : "(\\.[hH]|\\.[hH][hH]|\\.[hH][pP][pP]|\\.[hH][xX][xX])" + }, + { + "name" : "ARDUINO_CMAKE_HEADER_FILE_EXTENSION_REGEX_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Regex pattern matching all header file extensions" + } + ], + "type" : "STRING", + "value" : ".+\\.h.*$" + }, + { + "name" : "ARDUINO_CMAKE_HEADER_INCLUDE_REGEX_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Regex pattern matching header inclusion in a source file" + } + ], + "type" : "STRING", + "value" : "^[ \t]*#[ \t]*include[ \t]*[<\"]" + }, + { + "name" : "ARDUINO_CMAKE_HEADER_NAME_REGEX_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Regex pattern matching a header's name when wrapped in inclusion line" + } + ], + "type" : "STRING", + "value" : "^[ \t]*#[ \t]*include[ \t]*[<\"](.+)(\\.[hH]|\\.[hH][hH]|\\.[hH][pP][pP]|\\.[hH][xX][xX])[>\"]$" + }, + { + "name" : "ARDUINO_CMAKE_SKETCH_FILES_PATTERN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Sketch Files Pattern" + } + ], + "type" : "STRING", + "value" : "*.ino;*.pde" + }, + { + "name" : "ARDUINO_INSTALL_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to Arduino IDE installation" + } + ], + "type" : "PATH", + "value" : "/home/phr/workspace/sdk/arduino-1.8.19" + }, + { + "name" : "ARDUINO_LIBRARIES_SEARCH_PATHS_EXTRA", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Paths to search for Arduino libraries in addition to standard paths" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "ARDUINO_LIB_BLE_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library BLE" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE" + }, + { + "name" : "ARDUINO_LIB_Client_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library Client" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient" + }, + { + "name" : "ARDUINO_LIB_DNSServer_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library DNSServer" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer" + }, + { + "name" : "ARDUINO_LIB_Ethernet_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library Ethernet" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Ethernet" + }, + { + "name" : "ARDUINO_LIB_FS_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library FS" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/FS" + }, + { + "name" : "ARDUINO_LIB_HTTPClient_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library HTTPClient" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient" + }, + { + "name" : "ARDUINO_LIB_Preferences_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library Preferences" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences" + }, + { + "name" : "ARDUINO_LIB_SPIFFS_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library SPIFFS" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPIFFS" + }, + { + "name" : "ARDUINO_LIB_SPI_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library SPI" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI" + }, + { + "name" : "ARDUINO_LIB_Server_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library Server" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer" + }, + { + "name" : "ARDUINO_LIB_Update_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library Update" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update" + }, + { + "name" : "ARDUINO_LIB_WiFiClientSecure_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library WiFiClientSecure" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure" + }, + { + "name" : "ARDUINO_LIB_WiFiClient_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library WiFiClient" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure" + }, + { + "name" : "ARDUINO_LIB_WiFi_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path found containing the arduino library WiFi" + } + ], + "type" : "STRING", + "value" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi" + }, + { + "name" : "ARDUINO_PACKAGE_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to Arduino platform packages" + } + ], + "type" : "PATH", + "value" : "/home/phr/.arduino15" + }, + { + "name" : "ARDUINO_PREFERENCE_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/preferences.txt" + }, + { + "name" : "ARDUINO_PROGRAMMER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Arduino programmer used for uploading using programmer and for burning bootloader" + }, + { + "name" : "STRINGS", + "value" : "Esptool [esp32.esptool]" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "ARDUINO_SKETCHBOOK_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to Arduino Sketchbook" + } + ], + "type" : "PATH", + "value" : "/home/phr/Arduino" + }, + { + "name" : "Arduino(avr.atmegang)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega168" + }, + { + "name" : "Arduino(avr.bt)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega328P" + }, + { + "name" : "Arduino(avr.diecimila)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega328P" + }, + { + "name" : "Arduino(avr.lilypad)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega328P" + }, + { + "name" : "Arduino(avr.mega)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega2560 (Mega 2560)" + }, + { + "name" : "Arduino(avr.mini)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega328P" + }, + { + "name" : "Arduino(avr.nano)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega328P" + }, + { + "name" : "Arduino(avr.pro)/Processor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Processor\"" + } + ], + "type" : "INTERNAL", + "value" : "ATmega328P (5V, 16 MHz)" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.AirM2M_CORE_ESP32C3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion_Mini)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_Motion_S3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG" + }, + { + "name" : "Arduino(esp32.Bee_S3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.Bee_S3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.Bee_S3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_S3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.Bee_S3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.Bee_S3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.Bee_S3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_S3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.Bee_S3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG" + }, + { + "name" : "Arduino(esp32.Bee_S3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.CoreESP32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.CoreESP32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.CoreESP32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.CoreESP32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.CoreESP32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.CoreESP32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ET-Board)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ET-Board)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ET-Board)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.ET-Board)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.ET-Board)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.OpenKB)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.OpenKB)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.OpenKB)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.OpenKB)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.S_ODI_Ultra)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.S_ODI_Ultra)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.S_ODI_Ultra)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.S_ODI_Ultra)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.WeMosBat)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.WeMosBat)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.WeMosBat)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.WeMosBat)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.WeMosBat)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.XIAO_ESP32C3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (3MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32_v2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s2_tft)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "QSPI PSRAM" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 8MB (2MB APP/3.7MB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_nopsram)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "QSPI PSRAM" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_feather_esp32s3_tft)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.adafruit_funhouse_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (3MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.adafruit_itsybitsy_esp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.adafruit_magtag29_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.adafruit_metro_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (3MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32_pico)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32c3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 8MB (2MB APP/3.7MB FFAT)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.adafruit_qtpy_esp32s3_nopsram)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.alksesp32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.alksesp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.alksesp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.alksesp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.alksesp32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.alksesp32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.alksesp32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.alksesp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.alksesp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 16MB (2MB APP/11.6MB FFAT)" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.atmegazero_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.aw2eth)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.aw2eth)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.aw2eth)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.aw2eth)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.bpi-bit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.bpi-bit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.bpi-bit)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.bpi-bit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "QSPI PSRAM" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "8M with spiffs (3MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.bpi_leaf_s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ch_denky)/Board Revision", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Board Revision\"" + } + ], + "type" : "INTERNAL", + "value" : "PICO-V3-02" + }, + { + "name" : "Arduino(esp32.ch_denky)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ch_denky)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ch_denky)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.ch_denky)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.ch_denky)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.connaxio_espoir)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.connaxio_espoir)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.connaxio_espoir)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.connaxio_espoir)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.connaxio_espoir)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.connaxio_espoir)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.cw02)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.cw02)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.cw02)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.cw02)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.cw02)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.cw02)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "OPI PSRAM" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 8MB (2MB APP/3.7MB FFAT)" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.cytron_maker_feather_aiot_s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.d-duino-32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.d-duino-32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.d-duino-32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.d-duino-32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.d-duino-32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.d1_mini32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.d1_mini32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.d1_mini32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.d1_mini32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.d1_mini32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.d1_mini32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.d1_uno32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.d1_uno32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.d1_uno32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.d1_uno32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.d1_uno32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.d1_uno32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.d32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.d32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.d32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.d32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.d32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.d32_pro)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.d32_pro)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.d32_pro)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.d32_pro)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.d32_pro)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.d32_pro)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.deneyapkart)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.deneyapkart)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.deneyapkart)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkart)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.deneyapkart)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.deneyapkart)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.deneyapkart)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.deneyapkart1A)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.deneyapkart1Av2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.deneyapkartg)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.deneyapmini)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.deneyapmini)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.deneyapmini)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.deneyapmini)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapmini)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.deneyapmini)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "QSPI PSRAM" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.deneyapminiv2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 4MB (1.3MB APP/960KB FFAT)" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Internal USB" + }, + { + "name" : "Arduino(esp32.department_of_alchemy_minimain_esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_beetle_esp32c3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.dfrobot_firebeetle2_esp32s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.dpu_esp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.dpu_esp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.dpu_esp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.dpu_esp32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.dpu_esp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.dpu_esp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + }, + { + "name" : "STRINGS", + "value" : "Core 1;Core 0" + } + ], + "type" : "STRING", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + }, + { + "name" : "STRINGS", + "value" : "240MHz (WiFi/BT);160MHz (WiFi/BT);80MHz (WiFi/BT);40MHz (40MHz XTAL);26MHz (26MHz XTAL);20MHz (40MHz XTAL);13MHz (26MHz XTAL);10MHz (40MHz XTAL)" + } + ], + "type" : "STRING", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.esp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + }, + { + "name" : "STRINGS", + "value" : "None;Error;Warn;Info;Debug;Verbose" + } + ], + "type" : "STRING", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + }, + { + "name" : "STRINGS", + "value" : "Disabled;Enabled" + } + ], + "type" : "STRING", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + }, + { + "name" : "STRINGS", + "value" : "Core 1;Core 0" + } + ], + "type" : "STRING", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + }, + { + "name" : "STRINGS", + "value" : "80MHz;40MHz" + } + ], + "type" : "STRING", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + }, + { + "name" : "STRINGS", + "value" : "QIO;DIO;QOUT;DOUT" + } + ], + "type" : "STRING", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + }, + { + "name" : "STRINGS", + "value" : "4MB (32Mb);8MB (64Mb);2MB (16Mb);16MB (128Mb)" + } + ], + "type" : "STRING", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32)/JTAG Adapter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"JTAG Adapter\"" + }, + { + "name" : "STRINGS", + "value" : "FTDI Adapter;ESP USB Bridge" + } + ], + "type" : "STRING", + "value" : "FTDI Adapter" + }, + { + "name" : "Arduino(esp32.esp32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + }, + { + "name" : "STRINGS", + "value" : "Disabled;Enabled" + } + ], + "type" : "STRING", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + }, + { + "name" : "MODIFIED", + "value" : "ON" + }, + { + "name" : "STRINGS", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS);Default 4MB with ffat (1.2MB APP/1.5MB FATFS);8M with spiffs (3MB APP/1.5MB SPIFFS);Minimal (1.3MB APP/700KB SPIFFS);No OTA (2MB APP/2MB SPIFFS);No OTA (1MB APP/3MB SPIFFS);No OTA (2MB APP/2MB FATFS);No OTA (1MB APP/3MB FATFS);Huge APP (3MB No OTA/1MB SPIFFS);Minimal SPIFFS (1.9MB APP with OTA/190KB SPIFFS);16M Flash (2MB APP/12.5MB FATFS);16M Flash (3MB APP/9.9MB FATFS);RainMaker" + } + ], + "type" : "STRING", + "value" : "Minimal SPIFFS (1.9MB APP with OTA/190KB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + }, + { + "name" : "STRINGS", + "value" : "921600;115200;230400" + } + ], + "type" : "STRING", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32-DevKitLipo)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-DevKitLipo)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-DevKitLipo)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-DevKitLipo)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32-DevKitLipo)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.esp32-DevKitLipo)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32-evb)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-evb)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-evb)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-evb)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.esp32-evb)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.esp32-gateway)/Board Revision", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Board Revision\"" + } + ], + "type" : "INTERNAL", + "value" : "Revision C or older" + }, + { + "name" : "Arduino(esp32.esp32-gateway)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-gateway)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-gateway)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-gateway)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.esp32-gateway)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.esp32-poe)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-poe)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-poe)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-poe)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.esp32-poe)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.esp32-poe-iso)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-poe-iso)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-poe-iso)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-poe-iso)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.esp32-poe-iso)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver-mkii)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver-mkii)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver-mkii)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32-trueverit-iot-driver-mkii)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.esp320)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp320)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp320)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp320)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32c3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.esp32c3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32c3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32c3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32c3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32c3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32c3)/JTAG Adapter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"JTAG Adapter\"" + } + ], + "type" : "INTERNAL", + "value" : "Integrated USB JTAG" + }, + { + "name" : "Arduino(esp32.esp32c3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32c3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32c3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32c3m1IKit)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.esp32c3m1IKit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32c3m1IKit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32c3m1IKit)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32c3m1IKit)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32c3m1IKit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32cam)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.esp32cam)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32cam)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32cam)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32cam)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32cam)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Huge APP (3MB No OTA/1MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32da)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32da)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.esp32da)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32da)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32da)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32da)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32da)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32da)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32da)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32da)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32doit-devkit-v1)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32doit-devkit-v1)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32doit-devkit-v1)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32doit-devkit-v1)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32doit-espduino)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32doit-espduino)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32doit-espduino)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32doit-espduino)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32micromod)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32micromod)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32micromod)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32s2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32s2)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32s2)/JTAG Adapter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"JTAG Adapter\"" + } + ], + "type" : "INTERNAL", + "value" : "FTDI Adapter" + }, + { + "name" : "Arduino(esp32.esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32s2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0" + }, + { + "name" : "Arduino(esp32.esp32s2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32s2usb)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32s2usb)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2usb)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32s2usb)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s2usb)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.esp32s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.esp32s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32s3)/JTAG Adapter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"JTAG Adapter\"" + } + ], + "type" : "INTERNAL", + "value" : "Integrated USB JTAG" + }, + { + "name" : "Arduino(esp32.esp32s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.esp32s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.esp32s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32s3box)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32s3box)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3box)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32s3box)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3box)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3box)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.esp32s3camlcd)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32s3camlcd)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32s3camlcd)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3camlcd)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.esp32s3camlcd)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32s3camlcd)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32s3usbotg)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32s3usbotg)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32s3usbotg)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32s3usbotg)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG" + }, + { + "name" : "Arduino(esp32.esp32s3usbotg)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.esp32thing)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32thing)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32thing)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32thing)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.esp32thing)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32thing_plus)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32thing_plus)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32thing_plus)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32thing_plus)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (6.25MB APP/OTA/3.43MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32thing_plus)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32thing_plus_c)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32thing_plus_c)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32thing_plus_c)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32thing_plus_c)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (6.25MB APP/OTA/3.43MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32thing_plus_c)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32vn-iot-uno)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32vn-iot-uno)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32vn-iot-uno)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32vn-iot-uno)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32wrover)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32wrover)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32wrover)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32wrover)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32wrover)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32wrover)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.esp32wroverkit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.espea32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.espea32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.espea32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.espea32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.espectro32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.espectro32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.espectro32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.espectro32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.espectro32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.espectro32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.espino32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.espino32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.espino32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.espino32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.featheresp32)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.featheresp32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.featheresp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.featheresp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.featheresp32)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.featheresp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.featheresp32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.featheresp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.featheresp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.feathers2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.feathers2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.feathers2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "16MB (128Mb)" + }, + { + "name" : "Arduino(esp32.feathers2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.feathers2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "16M Flash (2MB APP/12.5MB FATFS)" + }, + { + "name" : "Arduino(esp32.feathers2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.feathers2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.feathers2neo)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.feathers2neo)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.feathers2neo)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers2neo)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.feathers2neo)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.feathers2neo)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.feathers2neo)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.feathers2neo)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers2neo)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers2neo)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.feathers3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.feathers3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.feathers3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.feathers3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.feathers3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.feathers3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.feathers3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (6.25MB APP/3.43MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.feathers3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.feathers3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.feathers3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.feathers3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.feathers3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.firebeetle32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.firebeetle32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.firebeetle32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.firebeetle32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.fm-devkit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.fm-devkit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.fm-devkit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_msc_esp32s2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_msc_esp32s2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_msc_esp32s2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_msc_esp32s2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.franzininho_wifi_msc_esp32s2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.frogboard)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.frogboard)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.frogboard)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.frogboard)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.frogboard)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.frogboard)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.frogboard)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.frogboard)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.gpy)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.gpy)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.gpy)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.gpy)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.healthypi4)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.healthypi4)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.healthypi4)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.healthypi4)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.healthypi4)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32_V3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32_V3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32_V3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32_V3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32_V3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.heltec_wifi_kit_32_V3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/LoRaWan Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/LoRaWan Region", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Region\"" + } + ], + "type" : "INTERNAL", + "value" : "REGION_EU868" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Regular 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/LoRaWan Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/LoRaWan Region", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Region\"" + } + ], + "type" : "INTERNAL", + "value" : "REGION_EU868" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/LORAWAN_DEVEUI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LORAWAN_DEVEUI\"" + } + ], + "type" : "INTERNAL", + "value" : "CUSTOM" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/LORAWAN_PREAMBLE_LENGTH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LORAWAN_PREAMBLE_LENGTH\"" + } + ], + "type" : "INTERNAL", + "value" : "8(default)" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/LoRaWan Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/LoRaWan Region", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Region\"" + } + ], + "type" : "INTERNAL", + "value" : "REGION_EU868" + }, + { + "name" : "Arduino(esp32.heltec_wifi_lora_32_V3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/LoRaWan Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/LoRaWan Region", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Region\"" + } + ], + "type" : "INTERNAL", + "value" : "REGION_EU868" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/LoRaWan Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/LoRaWan Region", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"LoRaWan Region\"" + } + ], + "type" : "INTERNAL", + "value" : "REGION_EU868" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.heltec_wireless_stick_lite)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.honeylemon)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.honeylemon)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.honeylemon)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.honeylemon)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.hornbill32dev)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.hornbill32dev)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.hornbill32dev)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.hornbill32dev)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.hornbill32minima)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.hornbill32minima)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.hornbill32minima)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.hornbill32minima)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.imbrios-logsens-v1p1)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.imbrios-logsens-v1p1)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.imbrios-logsens-v1p1)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.imbrios-logsens-v1p1)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.imbrios-logsens-v1p1)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.imbrios-logsens-v1p1)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.intorobot-fig)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.intorobot-fig)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.intorobot-fig)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.intorobot-fig)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.kb32)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.kb32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.kb32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.kb32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.kb32)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.kb32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.kb32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.kb32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.kb32)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.kb32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.kb32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.kits-edu)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.kits-edu)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.kits-edu)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.kits-edu)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.lionbit)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.lionbit)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.lionbit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lionbit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lionbit)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.lionbit)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.lionbit)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "DIO" + }, + { + "name" : "Arduino(esp32.lionbit)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.lionbit)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.lionbit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "115200" + }, + { + "name" : "Arduino(esp32.lolin32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.lolin32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lolin32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.lolin32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.lolin32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.lolin32-lite)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.lolin32-lite)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lolin32-lite)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin32-lite)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.lolin32-lite)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.lolin32-lite)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.lolin_c3_mini)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.lolin_s2_mini)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lolin_s2_mini)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_mini)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.lolin_s2_mini)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_mini)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_mini)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_pico)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lolin_s2_pico)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_pico)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.lolin_s2_pico)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_pico)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s2_pico)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.lolin_s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "16M Flash (2MB APP/12.5MB FATFS)" + }, + { + "name" : "Arduino(esp32.lolin_s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lolin_s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.lolin_s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.lopy)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lopy)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lopy)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.lopy)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.lopy4)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.lopy4)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lopy4)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.lopy4)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.lopy4)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.m5stack-atom)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-atom)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-atom)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.m5stack-atom)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "1500000" + }, + { + "name" : "Arduino(esp32.m5stack-core-esp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-core-esp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-core-esp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.m5stack-core-esp32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.m5stack-core-esp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.m5stack-core-esp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.m5stack-core2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.m5stack-core2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-core2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-core2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.m5stack-core2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (2 x 6.5 MB app, 3.6 MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.m5stack-core2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.m5stack-coreink)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-coreink)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-coreink)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.m5stack-coreink)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.m5stack-fire)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-fire)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-fire)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.m5stack-fire)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (2 x 6.5 MB app, 3.6 MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.m5stack-fire)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.m5stack-station)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.m5stack-station)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-station)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-station)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.m5stack-station)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "1500000" + }, + { + "name" : "Arduino(esp32.m5stack-timer-cam)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.m5stack-timer-cam)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stack-timer-cam)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stack-timer-cam)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.m5stack-timer-cam)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default(3MB No OTA/1MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.m5stack-timer-cam)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "1500000" + }, + { + "name" : "Arduino(esp32.m5stick-c)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.m5stick-c)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.m5stick-c)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.m5stick-c)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "1500000" + }, + { + "name" : "Arduino(esp32.mPython)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.mPython)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.mPython)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mPython)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.mPython)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.mPython)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.mPython)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mPython)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Huge APP (3MB No OTA/1MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.mPython)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.magicbit)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.magicbit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.magicbit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.magicbit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.metro_esp-32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.metro_esp-32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.metro_esp-32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.metro_esp-32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.metro_esp-32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32a)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.mgbot-iotik32b)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.mhetesp32devkit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.mhetesp32devkit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mhetesp32devkit)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.mhetesp32devkit)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.mhetesp32devkit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.mhetesp32minikit)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.mhetesp32minikit)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.mhetesp32minikit)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.mhetesp32minikit)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default with spiffs" + }, + { + "name" : "Arduino(esp32.mhetesp32minikit)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.micros2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.micros2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.micros2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.micros2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "16MB (128Mb)" + }, + { + "name" : "Arduino(esp32.micros2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.micros2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "16M Flash (2MB APP/12.5MB FATFS)" + }, + { + "name" : "Arduino(esp32.micros2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.micros2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.micros2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.micros2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.nano32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.nano32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nano32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.nano32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.nina_w10)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.nina_w10)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.nina_w10)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.nina_w10)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nina_w10)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.nina_w10)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.nina_w10)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "2MB (16Mb, NINA-W101/W102)" + }, + { + "name" : "Arduino(esp32.nina_w10)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Minimal (1.3MB APP/700KB SPIFFS)" + }, + { + "name" : "Arduino(esp32.nina_w10)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.node32s)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.node32s)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.node32s)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.node32s)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.node32s)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.nodemcu-32s)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.nodemcu-32s)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nodemcu-32s)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.nodemcu-32s)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.nora_w10)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.nora_w10)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.nora_w10)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.nora_w10)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nora_w10)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.nora_w10)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.nora_w10)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.nora_w10)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nora_w10)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.nora_w10)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nora_w10)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nora_w10)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.nora_w10)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.nora_w10)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.nora_w10)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.odroid_esp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.odroid_esp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.odroid_esp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.odroid_esp32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.odroid_esp32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.odroid_esp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.onehorse32dev)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.onehorse32dev)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.onehorse32dev)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.onehorse32dev)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.oroca_edubot)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.oroca_edubot)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.oroca_edubot)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.oroca_edubot)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Huge APP (3MB No OTA)" + }, + { + "name" : "Arduino(esp32.oroca_edubot)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.pico32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.pico32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.pico32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.pico32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.piranha_esp-32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.piranha_esp-32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.piranha_esp-32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.piranha_esp-32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.piranha_esp-32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.pocket_32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.pocket_32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.pocket_32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.pocket_32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.pros3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.pros3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.pros3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.pros3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.pros3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.pros3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.pros3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.pros3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (6.25MB APP/3.43MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.pros3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.pros3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.pros3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.pros3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.pros3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.pros3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.quantum)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.quantum)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.quantum)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.quantum)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "8MB (64Mb)" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "QSPI PSRAM" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "TinyUF2 8MB (2MB APP/3.7MB FFAT)" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.redpill_esp32s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.rmp)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.rmp)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.rmp)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.rmp)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.rmp)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.rmp)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.rmp)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.rmp)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.rmp)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.rmp)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.sensesiot_weizen)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.sensesiot_weizen)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sensesiot_weizen)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.sensesiot_weizen)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "RainMaker" + }, + { + "name" : "Arduino(esp32.sonoff_dualr3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32_iot_redboard)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_esp32s2_thing_plus)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.sparkfun_lora_gateway_1-channel)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.t-beam)/Board Revision", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Board Revision\"" + } + ], + "type" : "INTERNAL", + "value" : "Radio-SX1262" + }, + { + "name" : "Arduino(esp32.t-beam)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.t-beam)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.t-beam)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.t-beam)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.t-beam)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "QSPI PSRAM" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.tamc_termod_s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.tinypico)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.tinypico)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinypico)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.tinypico)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.tinypico)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.tinypico)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.tinypico)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.tinys2)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.tinys2)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.tinys2)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinys2)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.tinys2)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.tinys2)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.tinys2)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.tinys2)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinys2)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinys2)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.tinys3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.tinys3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.tinys3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.tinys3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinys3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.tinys3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.tinys3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.tinys3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (3MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.tinys3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.tinys3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinys3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.tinys3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG (TinyUSB)" + }, + { + "name" : "Arduino(esp32.tinys3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "USB-OTG CDC (TinyUSB)" + }, + { + "name" : "Arduino(esp32.tinys3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ttgo-lora32)/Board Revision", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Board Revision\"" + } + ], + "type" : "INTERNAL", + "value" : "TTGO LoRa32 V1 (No TFCard)" + }, + { + "name" : "Arduino(esp32.ttgo-lora32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ttgo-lora32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ttgo-lora32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.ttgo-lora32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.ttgo-t-oi-plus)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.ttgo-t1)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v13-mini32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi/BT)" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.ttgo-t7-v14-mini32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.turta_iot_node)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.turta_iot_node)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.turta_iot_node)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.twatch)/Board Revision", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Board Revision\"" + } + ], + "type" : "INTERNAL", + "value" : "T-Watch Base" + }, + { + "name" : "Arduino(esp32.twatch)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.twatch)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.twatch)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.twatch)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default (2 x 6.5 MB app, 3.6 MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.twatch)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "2000000" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.uPesy_wroom)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.uPesy_wrover)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.unphone7)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.unphone7)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone7)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.unphone7)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.unphone7)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.unphone8)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.unphone8)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.unphone8)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.unphone8)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone8)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone8)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone8)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.unphone8)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.unphone8)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.unphone9)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.unphone9)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.unphone9)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone9)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.unphone9)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Enabled" + }, + { + "name" : "Arduino(esp32.unphone9)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone9)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.unphone9)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.unphone9)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.unphone9)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.vintlabs-devkit-v1)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.vintlabs-devkit-v1)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.vintlabs-devkit-v1)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.vintlabs-devkit-v1)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.vintlabs-devkit-v1)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.vintlabs-devkit-v1)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "2000000" + }, + { + "name" : "Arduino(esp32.watchy)/Board Revision", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Board Revision\"" + } + ], + "type" : "INTERNAL", + "value" : "Watchy v1.0" + }, + { + "name" : "Arduino(esp32.watchy)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.watchy)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.watchy)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Huge APP (3MB No OTA/1MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.watchy)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.wesp32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.wesp32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wesp32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.wesp32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.widora-air)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.widora-air)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.widora-air)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.widora-air)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.wifiduino32)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.wifiduino32)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.wifiduino32)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default" + }, + { + "name" : "Arduino(esp32.wifiduino32)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "160MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32c3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Arduino Runs On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Arduino Runs On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/CPU Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"CPU Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "240MHz (WiFi)" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Events Run On", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Events Run On\"" + } + ], + "type" : "INTERNAL", + "value" : "Core 1" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO 80MHz" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Flash Size", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Size\"" + } + ], + "type" : "INTERNAL", + "value" : "4MB (32Mb)" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/PSRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"PSRAM\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/USB CDC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB CDC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/USB DFU On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB DFU On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/USB Firmware MSC On Boot", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Firmware MSC On Boot\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/USB Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"USB Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "Hardware CDC and JTAG" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Upload Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "UART0 / Hardware CDC" + }, + { + "name" : "Arduino(esp32.wifiduino32s3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.wipy3)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.wipy3)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wipy3)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.wipy3)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "Arduino(esp32.wt32-eth01)/Core Debug Level", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Core Debug Level\"" + } + ], + "type" : "INTERNAL", + "value" : "None" + }, + { + "name" : "Arduino(esp32.wt32-eth01)/Erase All Flash Before Sketch Upload", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Erase All Flash Before Sketch Upload\"" + } + ], + "type" : "INTERNAL", + "value" : "Disabled" + }, + { + "name" : "Arduino(esp32.wt32-eth01)/Flash Frequency", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Frequency\"" + } + ], + "type" : "INTERNAL", + "value" : "80MHz" + }, + { + "name" : "Arduino(esp32.wt32-eth01)/Flash Mode", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Flash Mode\"" + } + ], + "type" : "INTERNAL", + "value" : "QIO" + }, + { + "name" : "Arduino(esp32.wt32-eth01)/Partition Scheme", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Partition Scheme\"" + } + ], + "type" : "INTERNAL", + "value" : "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" + }, + { + "name" : "Arduino(esp32.wt32-eth01)/Upload Speed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Select Arduino Board option \"Upload Speed\"" + } + ], + "type" : "INTERNAL", + "value" : "921600" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-addr2line" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-ar" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Release" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/workspace/nuki_hub/cmake-build-release" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "24" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "2" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/bin/cmake" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/bin/cpack" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/bin/ctest" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-gcc-ar" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-gcc-ranlib" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-gcc-ar" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-gcc-ranlib" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/ccmake" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "/home/phr/workspace/nuki_hub/cmake-build-release/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/workspace/nuki_hub" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "/usr/local" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-ld" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/ninja/linux/x64/ninja" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-nm" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-objcopy" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-objdump" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "nuki_hub" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-ranlib" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-readelf" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-strip" + }, + { + "name" : "CMAKE_TOOLCHAIN_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "~/workspace/sdk/Arduino-CMake-Toolchain/Arduino-toolchain.cmake" + }, + { + "name" : "CMAKE_UNAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "uname command" + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/uname" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "_LAST_USED_ARDUINO_BOARD_OPTIONS_FILE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "/home/phr/workspace/nuki_hub/cmake-build-release/BoardOptions.cmake" + }, + { + "name" : "_LAST_USED_ARDUINO_BOARD_OPTIONS_FILE_TS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "2023-01-29T16:55:22" + }, + { + "name" : "_arduino_lib_BLE_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_Client_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;general;_arduino_lib_WiFiClient;general;_arduino_lib_WiFiClientSecure;general;_arduino_lib_WiFi;general;_arduino_lib_HTTPClient;" + }, + { + "name" : "_arduino_lib_DNSServer_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;general;_arduino_lib_WiFi;" + }, + { + "name" : "_arduino_lib_Ethernet_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_WiFi;general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_FS_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_HTTPClient_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;general;_arduino_lib_WiFiClient;general;_arduino_lib_WiFiClientSecure;general;_arduino_lib_WiFi;" + }, + { + "name" : "_arduino_lib_Preferences_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_SPIFFS_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_FS;general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_SPI_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_Server_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;general;_arduino_lib_DNSServer;" + }, + { + "name" : "_arduino_lib_Update_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;" + }, + { + "name" : "_arduino_lib_WiFiClientSecure_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;general;_arduino_lib_WiFi;" + }, + { + "name" : "_arduino_lib_WiFiClient_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_core;general;_arduino_lib_WiFi;general;_arduino_lib_WiFiClientSecure;" + }, + { + "name" : "_arduino_lib_WiFi_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;_arduino_lib_WiFiClient;general;_arduino_lib_core;general;_arduino_lib_Client;general;_arduino_lib_Server;" + }, + { + "name" : "nuki_hub_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/phr/workspace/nuki_hub/cmake-build-release" + }, + { + "name" : "nuki_hub_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "nuki_hub_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/phr/workspace/nuki_hub" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/bla/.cmake/api/v1/reply/cmakeFiles-v1-12ca05bf664db97fe3ed.json b/bla/.cmake/api/v1/reply/cmakeFiles-v1-12ca05bf664db97fe3ed.json new file mode 100644 index 0000000..5c331a4 --- /dev/null +++ b/bla/.cmake/api/v1/reply/cmakeFiles-v1-12ca05bf664db97fe3ed.json @@ -0,0 +1,725 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino-toolchain.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardsIndex.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/PropertiesReader.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/PackagePathIndex.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/PlatformIndex.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/JSONParser.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/PackagePathIndex.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardToolchain.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/PropertiesReader.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/PackagePathIndex.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/PlatformIndex.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardsIndex.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/SourceLocator.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/SourceDependency.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/Utilities/CommonUtils.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardToolchain.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/ArduinoSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Platform/Arduino.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Platform/Arduino.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Platform/Arduino.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Platform/Arduino.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/Compiler/GNU.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Platform/Arduino.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/home/phr/.local/share/JetBrains/Toolbox/apps/CLion/ch-0/223.8617.54/bin/cmake/linux/x64/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/BoardOptions.cmake" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2902.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2904.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAddress.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertisedDevice.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertising.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEBeacon.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLECharacteristic.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEClient.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDescriptor.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDevice.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneTLM.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneURL.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEExceptions.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEHIDDevice.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteCharacteristic.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteDescriptor.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteService.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEScan.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLESecurity.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEServer.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEService.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUUID.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUtils.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEValue.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/GeneralUtils.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/HIDKeyboardTypes.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/HIDTypes.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/RTOS.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2902.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2904.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAddress.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertisedDevice.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertising.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEBeacon.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLECharacteristic.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLECharacteristicMap.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEClient.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDescriptor.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDescriptorMap.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDevice.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneTLM.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneURL.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEExceptions.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEHIDDevice.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteCharacteristic.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteDescriptor.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteService.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEScan.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLESecurity.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEServer.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEService.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEServiceMap.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUUID.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUtils.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEValue.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/FreeRTOS.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/GeneralUtils.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFi.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiAP.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiClient.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiGeneric.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiMulti.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiSTA.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiScan.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiServer.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiType.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiUdp.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFi.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiAP.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiClient.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiGeneric.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiMulti.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiSTA.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiScan.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiServer.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiUdp.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.c" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.c" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/HttpsOTAUpdate.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/Update.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/HttpsOTAUpdate.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/Updater.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src/Preferences.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src/Preferences.cpp" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src/SPI.h" + }, + { + "isExternal" : true, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src/SPI.cpp" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "/home/phr/workspace/nuki_hub/cmake-build-release", + "source" : "/home/phr/workspace/nuki_hub" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/bla/.cmake/api/v1/reply/codemodel-v2-d4ecac6184ad46bf558e.json b/bla/.cmake/api/v1/reply/codemodel-v2-d4ecac6184ad46bf558e.json new file mode 100644 index 0000000..fd2b023 --- /dev/null +++ b/bla/.cmake/api/v1/reply/codemodel-v2-d4ecac6184ad46bf558e.json @@ -0,0 +1,177 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Release-f5ebdc15457944623624.json", + "minimumCMakeVersion" : + { + "string" : "3.0.0" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ] + } + ], + "name" : "Release", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "nuki_hub", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "_arduino_lib_BLE::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_BLE-Release-460e31126632a814d10e.json", + "name" : "_arduino_lib_BLE", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_Client::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_Client-Release-2c863ab41490518561b9.json", + "name" : "_arduino_lib_Client", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_DNSServer::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_DNSServer-Release-490d2edc140b98cabf50.json", + "name" : "_arduino_lib_DNSServer", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_HTTPClient::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_HTTPClient-Release-304137aab2e9cbf4e0dc.json", + "name" : "_arduino_lib_HTTPClient", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_Preferences::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_Preferences-Release-1a2cd6568ab0d48b2be8.json", + "name" : "_arduino_lib_Preferences", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_SPI::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_SPI-Release-e26d8cf0ae99f3ce2f1e.json", + "name" : "_arduino_lib_SPI", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_Server::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_Server-Release-e100a7f6b6d513aff742.json", + "name" : "_arduino_lib_Server", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_Update::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_Update-Release-a23f8285d79b49343982.json", + "name" : "_arduino_lib_Update", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_WiFi::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_WiFi-Release-477d42b334d064f35b92.json", + "name" : "_arduino_lib_WiFi", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_WiFiClient::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_WiFiClient-Release-3ad019f7c7bb14b4c557.json", + "name" : "_arduino_lib_WiFiClient", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_WiFiClientSecure::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_WiFiClientSecure-Release-ea385e03e4a800f1fc01.json", + "name" : "_arduino_lib_WiFiClientSecure", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df", + "jsonFile" : "target-_arduino_lib_core-Release-cd80220cdc8fb3561e26.json", + "name" : "_arduino_lib_core", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "nuki_hub::@6890427a1f51a3e7e1df", + "jsonFile" : "target-nuki_hub-Release-69fea0c62c5b42968952.json", + "name" : "nuki_hub", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "upload-nuki_hub::@6890427a1f51a3e7e1df", + "jsonFile" : "target-upload-nuki_hub-Release-c98640c0d2877c043744.json", + "name" : "upload-nuki_hub", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "/home/phr/workspace/nuki_hub/cmake-build-release", + "source" : "/home/phr/workspace/nuki_hub" + }, + "version" : + { + "major" : 2, + "minor" : 4 + } +} diff --git a/bla/.cmake/api/v1/reply/directory-.-Release-f5ebdc15457944623624.json b/bla/.cmake/api/v1/reply/directory-.-Release-f5ebdc15457944623624.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/bla/.cmake/api/v1/reply/directory-.-Release-f5ebdc15457944623624.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/bla/.cmake/api/v1/reply/index-2023-02-18T19-57-51-0133.json b/bla/.cmake/api/v1/reply/index-2023-02-18T19-57-51-0133.json new file mode 100644 index 0000000..e69de29 diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_BLE-Release-460e31126632a814d10e.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_BLE-Release-460e31126632a814d10e.json new file mode 100644 index 0000000..fef98d6 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_BLE-Release-460e31126632a814d10e.json @@ -0,0 +1,819 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_BLE.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "target_link_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 4, + "file" : 0, + "line" : 700, + "parent" : 6 + }, + { + "command" : 5, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 12, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 75, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 77, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 73, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 65, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 63, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 67, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 55, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 71, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 59, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 57, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 69, + "parent" : 12 + }, + { + "command" : 5, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 9, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 10, + "file" : 0, + "line" : 741, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 25, + "define" : "ESP32" + }, + { + "backtrace" : 26, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 27, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 28, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 29, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 30, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_BLE::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_BLE", + "nameOnDisk" : "lib_arduino_lib_BLE.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2902.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2904.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAddress.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertisedDevice.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertising.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEBeacon.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLECharacteristic.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEClient.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDescriptor.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDevice.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneTLM.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneURL.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEExceptions.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEHIDDevice.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteCharacteristic.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteDescriptor.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteService.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEScan.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLESecurity.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEServer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEService.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUUID.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUtils.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEValue.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/GeneralUtils.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/HIDKeyboardTypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/HIDTypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/RTOS.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2902.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLE2904.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAddress.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertisedDevice.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEAdvertising.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEBeacon.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLECharacteristic.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLECharacteristicMap.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEClient.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDescriptor.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDescriptorMap.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEDevice.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneTLM.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEEddystoneURL.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEExceptions.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEHIDDevice.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteCharacteristic.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteDescriptor.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLERemoteService.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEScan.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLESecurity.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEServer.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEService.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEServiceMap.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUUID.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEUtils.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/BLEValue.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/FreeRTOS.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src/GeneralUtils.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_Client-Release-2c863ab41490518561b9.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_Client-Release-2c863ab41490518561b9.json new file mode 100644 index 0000000..154a804 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_Client-Release-2c863ab41490518561b9.json @@ -0,0 +1,456 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_Client.a" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 5 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 9 + }, + { + "file" : 2, + "parent" : 10 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 11 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 741, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 4 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 32 + }, + { + "command" : 10, + "file" : 0, + "line" : 700, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 24, + "define" : "ESP32" + }, + { + "backtrace" : 25, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 26, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 27, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 28, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 29, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "_arduino_lib_HTTPClient::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_Client::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_Client", + "nameOnDisk" : "lib_arduino_lib_Client.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_DNSServer-Release-490d2edc140b98cabf50.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_DNSServer-Release-490d2edc140b98cabf50.json new file mode 100644 index 0000000..db2ef41 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_DNSServer-Release-490d2edc140b98cabf50.json @@ -0,0 +1,487 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_DNSServer.a" + } + ], + "backtrace" : 8, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "target_link_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 4 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 6 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 7 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 6 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 9 + }, + { + "command" : 4, + "file" : 0, + "line" : 700, + "parent" : 10 + }, + { + "command" : 5, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 13 + }, + { + "command" : 7, + "file" : 3, + "line" : 12, + "parent" : 14 + }, + { + "file" : 2, + "parent" : 15 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 75, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 77, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 73, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 65, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 63, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 67, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 55, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 71, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 59, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 57, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 69, + "parent" : 16 + }, + { + "command" : 5, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 9, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 10, + "file" : 0, + "line" : 741, + "parent" : 7 + }, + { + "command" : 3, + "file" : 1, + "line" : 129, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 37 + }, + { + "command" : 4, + "file" : 0, + "line" : 700, + "parent" : 38 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 12, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 25, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 26, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 27, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 28, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 29, + "define" : "ESP32" + }, + { + "backtrace" : 30, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 31, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 32, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 33, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 34, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + }, + { + "backtrace" : 11, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 11, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 39, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 39, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 39, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 11, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_DNSServer::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_DNSServer", + "nameOnDisk" : "lib_arduino_lib_DNSServer.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 8, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 8, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_HTTPClient-Release-304137aab2e9cbf4e0dc.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_HTTPClient-Release-304137aab2e9cbf4e0dc.json new file mode 100644 index 0000000..432c7ee --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_HTTPClient-Release-304137aab2e9cbf4e0dc.json @@ -0,0 +1,468 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_HTTPClient.a" + } + ], + "backtrace" : 8, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 4 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 6 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 7 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 11 + }, + { + "file" : 2, + "parent" : 12 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 13 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 741, + "parent" : 7 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 6 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 34 + }, + { + "command" : 10, + "file" : 0, + "line" : 700, + "parent" : 35 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 25, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 26, + "define" : "ESP32" + }, + { + "backtrace" : 27, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 28, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 29, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 30, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 31, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 33, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "_arduino_lib_Server::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_HTTPClient::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_HTTPClient", + "nameOnDisk" : "lib_arduino_lib_HTTPClient.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 8, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 8, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src/HTTPClient.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_Preferences-Release-1a2cd6568ab0d48b2be8.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_Preferences-Release-1a2cd6568ab0d48b2be8.json new file mode 100644 index 0000000..cd51ef5 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_Preferences-Release-1a2cd6568ab0d48b2be8.json @@ -0,0 +1,433 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_Preferences.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "target_link_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 4, + "file" : 0, + "line" : 700, + "parent" : 6 + }, + { + "command" : 5, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 12, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 75, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 77, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 73, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 65, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 63, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 67, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 55, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 71, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 59, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 57, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 69, + "parent" : 12 + }, + { + "command" : 5, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 9, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 10, + "file" : 0, + "line" : 741, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 25, + "define" : "ESP32" + }, + { + "backtrace" : 26, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 27, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 28, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 29, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 30, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_Preferences::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_Preferences", + "nameOnDisk" : "lib_arduino_lib_Preferences.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src/Preferences.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src/Preferences.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_SPI-Release-e26d8cf0ae99f3ce2f1e.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_SPI-Release-e26d8cf0ae99f3ce2f1e.json new file mode 100644 index 0000000..a1c9579 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_SPI-Release-e26d8cf0ae99f3ce2f1e.json @@ -0,0 +1,433 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_SPI.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "target_link_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 4, + "file" : 0, + "line" : 700, + "parent" : 6 + }, + { + "command" : 5, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 12, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 75, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 77, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 73, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 65, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 63, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 67, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 55, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 71, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 59, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 57, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 69, + "parent" : 12 + }, + { + "command" : 5, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 9, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 10, + "file" : 0, + "line" : 741, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 25, + "define" : "ESP32" + }, + { + "backtrace" : 26, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 27, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 28, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 29, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 30, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_SPI::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_SPI", + "nameOnDisk" : "lib_arduino_lib_SPI.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src/SPI.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src/SPI.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_Server-Release-e100a7f6b6d513aff742.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_Server-Release-e100a7f6b6d513aff742.json new file mode 100644 index 0000000..1ac96f9 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_Server-Release-e100a7f6b6d513aff742.json @@ -0,0 +1,456 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_Server.a" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 5 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 9 + }, + { + "file" : 2, + "parent" : 10 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 11 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 741, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 4 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 32 + }, + { + "command" : 10, + "file" : 0, + "line" : 700, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 24, + "define" : "ESP32" + }, + { + "backtrace" : 25, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 26, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 27, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 28, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 29, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "_arduino_lib_DNSServer::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_Server::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_Server", + "nameOnDisk" : "lib_arduino_lib_Server.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src/DNSServer.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_Update-Release-a23f8285d79b49343982.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_Update-Release-a23f8285d79b49343982.json new file mode 100644 index 0000000..ae374cd --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_Update-Release-a23f8285d79b49343982.json @@ -0,0 +1,447 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_Update.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "target_link_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 4, + "file" : 0, + "line" : 700, + "parent" : 6 + }, + { + "command" : 5, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 12, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 75, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 77, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 73, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 65, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 63, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 67, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 55, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 71, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 59, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 57, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 69, + "parent" : 12 + }, + { + "command" : 5, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 9, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 10, + "file" : 0, + "line" : 741, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 25, + "define" : "ESP32" + }, + { + "backtrace" : 26, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 27, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 28, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 29, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 30, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 7, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 2, + 3 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_Update::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_Update", + "nameOnDisk" : "lib_arduino_lib_Update.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 2, + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/HttpsOTAUpdate.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/Update.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/HttpsOTAUpdate.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src/Updater.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFi-Release-477d42b334d064f35b92.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFi-Release-477d42b334d064f35b92.json new file mode 100644 index 0000000..4c6825b --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFi-Release-477d42b334d064f35b92.json @@ -0,0 +1,562 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_WiFi.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 9 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 741, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 30 + }, + { + "command" : 10, + "file" : 0, + "line" : 700, + "parent" : 31 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 5, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 10, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 11, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 22, + "define" : "ESP32" + }, + { + "backtrace" : 23, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 24, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 25, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 26, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 27, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 29, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + } + ], + "dependencies" : + [ + { + "id" : "_arduino_lib_WiFiClient::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_WiFi::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_WiFi", + "nameOnDisk" : "lib_arduino_lib_WiFi.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFi.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiAP.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiClient.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiGeneric.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiMulti.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiSTA.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiScan.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiServer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiType.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiUdp.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFi.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiAP.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiClient.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiGeneric.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiMulti.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiSTA.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiScan.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiServer.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src/WiFiUdp.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFiClient-Release-3ad019f7c7bb14b4c557.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFiClient-Release-3ad019f7c7bb14b4c557.json new file mode 100644 index 0000000..ac7bfd6 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFiClient-Release-3ad019f7c7bb14b4c557.json @@ -0,0 +1,650 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_WiFiClient.a" + } + ], + "backtrace" : 6, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 3 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 4 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 5 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 9 + }, + { + "file" : 2, + "parent" : 10 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 11 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 741, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 4 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 32 + }, + { + "command" : 10, + "file" : 0, + "line" : 700, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 24, + "define" : "ESP32" + }, + { + "backtrace" : 25, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 26, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 27, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 28, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 29, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 3 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 24, + "define" : "ESP32" + }, + { + "backtrace" : 25, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 26, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 27, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 28, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 29, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 30, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 31, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 34, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 4, + 5 + ] + } + ], + "dependencies" : + [ + { + "id" : "_arduino_lib_WiFiClientSecure::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_WiFiClient::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_WiFiClient", + "nameOnDisk" : "lib_arduino_lib_WiFiClient.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 3, + 4, + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 6, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 6, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 6, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 6, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFiClientSecure-Release-ea385e03e4a800f1fc01.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFiClientSecure-Release-ea385e03e4a800f1fc01.json new file mode 100644 index 0000000..331343b --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_WiFiClientSecure-Release-ea385e03e4a800f1fc01.json @@ -0,0 +1,662 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_WiFiClientSecure.a" + } + ], + "backtrace" : 8, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_library", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories", + "target_link_libraries" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 3 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 4 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 5 + }, + { + "command" : 1, + "file" : 0, + "line" : 680, + "parent" : 6 + }, + { + "command" : 0, + "file" : 0, + "line" : 739, + "parent" : 7 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 11 + }, + { + "file" : 2, + "parent" : 12 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 13 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 13 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 741, + "parent" : 7 + }, + { + "command" : 3, + "file" : 0, + "line" : 685, + "parent" : 6 + }, + { + "command" : 2, + "file" : 0, + "line" : 212, + "parent" : 34 + }, + { + "command" : 10, + "file" : 0, + "line" : 700, + "parent" : 35 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 25, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 26, + "define" : "ESP32" + }, + { + "backtrace" : 27, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 28, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 29, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 30, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 31, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 33, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 3 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 25, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 26, + "define" : "ESP32" + }, + { + "backtrace" : 27, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 28, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 29, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 30, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 31, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 32, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 33, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 36, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 4, + 5 + ] + } + ], + "dependencies" : + [ + { + "id" : "_arduino_lib_Client::@6890427a1f51a3e7e1df" + } + ], + "id" : "_arduino_lib_WiFiClientSecure::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_WiFiClientSecure", + "nameOnDisk" : "lib_arduino_lib_WiFiClientSecure.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 3, + 4, + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 8, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 8, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 8, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 8, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/esp_crt_bundle.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/WiFiClientSecure.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 8, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src/ssl_client.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-_arduino_lib_core-Release-cd80220cdc8fb3561e26.json b/bla/.cmake/api/v1/reply/target-_arduino_lib_core-Release-cd80220cdc8fb3561e26.json new file mode 100644 index 0000000..93e3e04 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-_arduino_lib_core-Release-cd80220cdc8fb3561e26.json @@ -0,0 +1,901 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "lib_arduino_lib_core.a" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_add_internal_arduino_core", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 183, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 676, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 772, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 26, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 6, + "file" : 3, + "line" : 12, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 5, + "file" : 2, + "line" : 61, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 75, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 77, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 73, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 65, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 63, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 67, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 55, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 71, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 59, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 57, + "parent" : 9 + }, + { + "command" : 5, + "file" : 2, + "line" : 69, + "parent" : 9 + }, + { + "command" : 4, + "file" : 1, + "line" : 25, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 24, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 21, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 22, + "parent" : 0 + }, + { + "command" : 4, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 775, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG" + } + ], + "defines" : + [ + { + "backtrace" : 5, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 10, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 11, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 22, + "define" : "ESP32" + }, + { + "backtrace" : 23, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 24, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 25, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 26, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 27, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 29, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 29, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 5, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 10, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 11, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 13, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 14, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 15, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 16, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 22, + "define" : "ESP32" + }, + { + "backtrace" : 23, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 24, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 25, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 26, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 27, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 28, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 29, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 29, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ] + } + ], + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df", + "name" : "_arduino_lib_core", + "nameOnDisk" : "lib_arduino_lib_core.a", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-adc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-bt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-cpu.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-dac.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-gpio.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-i2c-slave.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-i2c.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-ledc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-matrix.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-misc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-psram.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-rgb-led.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-rmt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-sigmadelta.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-spi.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-time.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-timer.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-tinyusb.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-touch.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/esp32-hal-uart.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/firmware_msc_fat.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/libb64/cdecode.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/libb64/cencode.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/stdlib_noniso.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/wiring_pulse.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/wiring_shift.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/Esp.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/FirmwareMSC.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/FunctionalInterrupt.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/HWCDC.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/HardwareSerial.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/IPAddress.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/IPv6Address.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/MD5Builder.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/Print.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/Stream.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/StreamString.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/Tone.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/USB.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/USBCDC.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/USBMSC.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/WMath.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/WString.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/base64.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/cbuf.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 1, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32/main.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/bla/.cmake/api/v1/reply/target-nuki_hub-Release-69fea0c62c5b42968952.json b/bla/.cmake/api/v1/reply/target-nuki_hub-Release-69fea0c62c5b42968952.json new file mode 100644 index 0000000..85cda94 --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-nuki_hub-Release-69fea0c62c5b42968952.json @@ -0,0 +1,4084 @@ +{ + "artifacts" : + [ + { + "path" : "nuki_hub.elf" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "target_link_libraries", + "_link_ard_lib_list", + "target_link_arduino_libraries", + "target_compile_definitions", + "add_compile_definitions", + "add_definitions", + "include", + "project", + "include_directories" + ], + "files" : + [ + "CMakeLists.txt", + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "cmake-build-release/ArduinoSystem.cmake", + "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 104, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 1, + "line" : 183, + "parent" : 2 + }, + { + "command" : 1, + "file" : 1, + "line" : 700, + "parent" : 3 + }, + { + "command" : 3, + "file" : 1, + "line" : 685, + "parent" : 3 + }, + { + "command" : 2, + "file" : 1, + "line" : 212, + "parent" : 5 + }, + { + "command" : 1, + "file" : 1, + "line" : 700, + "parent" : 6 + }, + { + "command" : 3, + "file" : 1, + "line" : 685, + "parent" : 6 + }, + { + "command" : 2, + "file" : 1, + "line" : 212, + "parent" : 8 + }, + { + "command" : 1, + "file" : 1, + "line" : 700, + "parent" : 9 + }, + { + "command" : 4, + "file" : 0, + "line" : 110, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 26, + "parent" : 0 + }, + { + "command" : 8, + "file" : 0, + "line" : 5, + "parent" : 0 + }, + { + "file" : 3, + "parent" : 13 + }, + { + "command" : 7, + "file" : 3, + "line" : 12, + "parent" : 14 + }, + { + "file" : 2, + "parent" : 15 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 75, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 77, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 73, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 65, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 63, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 67, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 55, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 71, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 59, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 57, + "parent" : 16 + }, + { + "command" : 6, + "file" : 2, + "line" : 69, + "parent" : 16 + }, + { + "command" : 5, + "file" : 0, + "line" : 25, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 24, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 21, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 23, + "parent" : 0 + }, + { + "command" : 9, + "file" : 0, + "line" : 28, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "ARDUHAL_LOG_LEVEL=ARDUHAL_LOG_LEVEL_NONE" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 25, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 26, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 27, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 28, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 11, + "define" : "CONFIG_NIMBLE_CPP_LOG_LEVEL=0" + }, + { + "backtrace" : 11, + "define" : "CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_NONE" + }, + { + "backtrace" : 29, + "define" : "ESP32" + }, + { + "backtrace" : 30, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 31, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 32, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 33, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 34, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0, + 2, + 3, + 6, + 7, + 8, + 9, + 10, + 11, + 14, + 17, + 19, + 21, + 23, + 24, + 27, + 31, + 33, + 34, + 36, + 37, + 38, + 40, + 41, + 42, + 43, + 45, + 47, + 49, + 51, + 53, + 55, + 56, + 60, + 62, + 64, + 66, + 69, + 71, + 73, + 76, + 78, + 80, + 82, + 84, + 86, + 89, + 91, + 93, + 95, + 97, + 99, + 101, + 103, + 105, + 422, + 424, + 428, + 430, + 432, + 434, + 436, + 444, + 449, + 451, + 453, + 455, + 457, + 459, + 461, + 463, + 465, + 468, + 470, + 472 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "ARDUHAL_LOG_LEVEL=ARDUHAL_LOG_LEVEL_NONE" + }, + { + "backtrace" : 12, + "define" : "ARDUINO_ARCH_ESP32" + }, + { + "backtrace" : 17, + "define" : "ARDUINO_ESP32_ESP32_MENU_CPUFREQ_240" + }, + { + "backtrace" : 18, + "define" : "ARDUINO_ESP32_ESP32_MENU_DEBUGLEVEL_NONE" + }, + { + "backtrace" : 19, + "define" : "ARDUINO_ESP32_ESP32_MENU_ERASEFLASH_NONE" + }, + { + "backtrace" : 20, + "define" : "ARDUINO_ESP32_ESP32_MENU_EVENTSCORE_1" + }, + { + "backtrace" : 21, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHFREQ_80" + }, + { + "backtrace" : 22, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHMODE_QIO" + }, + { + "backtrace" : 23, + "define" : "ARDUINO_ESP32_ESP32_MENU_FLASHSIZE_4M" + }, + { + "backtrace" : 24, + "define" : "ARDUINO_ESP32_ESP32_MENU_JTAGADAPTER_EXTERNAL" + }, + { + "backtrace" : 25, + "define" : "ARDUINO_ESP32_ESP32_MENU_LOOPCORE_1" + }, + { + "backtrace" : 26, + "define" : "ARDUINO_ESP32_ESP32_MENU_PARTITIONSCHEME_MIN_SPIFFS" + }, + { + "backtrace" : 27, + "define" : "ARDUINO_ESP32_ESP32_MENU_PSRAM_DISABLED" + }, + { + "backtrace" : 28, + "define" : "ARDUINO_ESP32_ESP32_MENU_UPLOADSPEED_921600" + }, + { + "backtrace" : 11, + "define" : "CONFIG_NIMBLE_CPP_LOG_LEVEL=0" + }, + { + "backtrace" : 11, + "define" : "CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_NONE" + }, + { + "backtrace" : 29, + "define" : "ESP32" + }, + { + "backtrace" : 30, + "define" : "ESP_PLATFORM" + }, + { + "backtrace" : 31, + "define" : "TLS_CA_MAX_SIZE=2200" + }, + { + "backtrace" : 32, + "define" : "TLS_CERT_MAX_SIZE=1500" + }, + { + "backtrace" : 33, + "define" : "TLS_KEY_MAX_SIZE=1800" + }, + { + "backtrace" : 34, + "define" : "TX_PAYLOAD_BUFFER_SIZE=6144" + } + ], + "includes" : + [ + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/nuki_hub" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/PRIVATE" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/Crc16" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/NimBLE-Arduino/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/BleScanner/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/nuki_ble/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/WiFiManager" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/WebServer/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/Ethernet/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/MqttLogger/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/espMqttClient/src" + }, + { + "backtrace" : 35, + "path" : "/home/phr/workspace/nuki_hub/lib/AsyncTCP/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/cores/esp32" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/variants/esp32" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/BLE/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFi/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/WiFiClientSecure/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/HTTPClient/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/DNSServer/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Update/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/Preferences/src" + }, + { + "backtrace" : 4, + "path" : "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/libraries/SPI/src" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 110, + 113, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 162, + 163, + 164, + 165, + 167, + 168, + 170, + 171, + 172, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 185, + 186, + 188, + 189, + 190, + 227, + 229, + 231, + 232, + 235, + 237, + 238, + 240, + 241, + 242, + 245, + 247, + 248, + 249, + 250, + 252, + 254, + 256, + 258, + 259, + 260, + 262, + 264, + 265, + 266, + 269, + 270, + 272, + 274, + 276, + 278, + 280, + 282, + 285, + 287, + 289, + 291, + 293, + 295, + 297, + 299, + 300, + 301, + 302, + 305, + 306, + 307, + 310, + 311, + 312, + 313, + 314, + 316, + 318, + 319, + 321, + 323, + 324, + 325, + 327, + 328, + 330, + 331, + 333, + 334, + 335, + 338, + 340, + 342, + 343, + 345, + 346, + 347, + 348, + 351, + 352, + 354, + 356, + 357, + 358, + 359, + 361, + 362, + 363, + 364, + 367, + 368, + 370, + 372, + 380, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 415, + 416 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "_arduino_lib_Update::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 4, + "id" : "_arduino_lib_Preferences::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 4, + "id" : "_arduino_lib_SPI::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 4, + "id" : "_arduino_lib_core::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 4, + "id" : "_arduino_lib_BLE::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 4, + "id" : "_arduino_lib_WiFi::@6890427a1f51a3e7e1df" + } + ], + "id" : "nuki_hub::@6890427a1f51a3e7e1df", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_core.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_BLE.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_WiFi.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_WiFiClientSecure.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_Update.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_DNSServer.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_Preferences.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_SPI.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "lib_arduino_lib_WiFiClient.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "lib_arduino_lib_Client.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "lib_arduino_lib_Server.a", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "lib_arduino_lib_HTTPClient.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_WiFi.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_WiFiClientSecure.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_DNSServer.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "lib_arduino_lib_WiFiClient.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "lib_arduino_lib_Client.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "lib_arduino_lib_Server.a", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "lib_arduino_lib_HTTPClient.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "lib_arduino_lib_core.a", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "nuki_hub", + "nameOnDisk" : "nuki_hub.elf", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 2, + 3, + 6, + 7, + 8, + 9, + 10, + 11, + 14, + 17, + 19, + 21, + 23, + 24, + 27, + 31, + 33, + 34, + 36, + 37, + 38, + 40, + 41, + 42, + 43, + 45, + 47, + 49, + 51, + 53, + 55, + 56, + 60, + 62, + 64, + 66, + 69, + 71, + 73, + 76, + 78, + 80, + 82, + 84, + 86, + 89, + 91, + 93, + 95, + 97, + 99, + 101, + 103, + 105, + 110, + 113, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 162, + 163, + 164, + 165, + 167, + 168, + 170, + 171, + 172, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 185, + 186, + 188, + 189, + 190, + 227, + 229, + 231, + 232, + 235, + 237, + 238, + 240, + 241, + 242, + 245, + 247, + 248, + 249, + 250, + 252, + 254, + 256, + 258, + 259, + 260, + 262, + 264, + 265, + 266, + 269, + 270, + 272, + 274, + 276, + 278, + 280, + 282, + 285, + 287, + 289, + 291, + 293, + 295, + 297, + 299, + 300, + 301, + 302, + 305, + 306, + 307, + 310, + 311, + 312, + 313, + 314, + 316, + 318, + 319, + 321, + 323, + 324, + 325, + 327, + 328, + 330, + 331, + 333, + 334, + 335, + 338, + 340, + 342, + 343, + 345, + 346, + 347, + 348, + 351, + 352, + 354, + 356, + 357, + 358, + 359, + 361, + 362, + 363, + 364, + 367, + 368, + 370, + 372, + 380, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 415, + 416, + 422, + 424, + 428, + 430, + 432, + 434, + 436, + 444, + 449, + 451, + 453, + 455, + 457, + 459, + 461, + 463, + 465, + 468, + 470, + 472 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 4, + 5, + 12, + 13, + 15, + 16, + 18, + 20, + 22, + 25, + 26, + 28, + 29, + 30, + 32, + 35, + 39, + 44, + 46, + 48, + 50, + 52, + 54, + 57, + 58, + 59, + 61, + 63, + 65, + 67, + 68, + 70, + 72, + 74, + 75, + 77, + 79, + 81, + 83, + 85, + 87, + 88, + 90, + 92, + 94, + 96, + 98, + 100, + 102, + 104, + 106, + 107, + 108, + 109, + 111, + 112, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 166, + 169, + 173, + 184, + 187, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 228, + 230, + 233, + 234, + 236, + 239, + 243, + 244, + 246, + 251, + 253, + 255, + 257, + 261, + 263, + 267, + 268, + 271, + 273, + 275, + 277, + 279, + 281, + 283, + 284, + 286, + 288, + 290, + 292, + 294, + 296, + 298, + 303, + 304, + 308, + 309, + 315, + 317, + 320, + 322, + 326, + 329, + 332, + 336, + 337, + 339, + 341, + 344, + 349, + 350, + 353, + 355, + 360, + 365, + 366, + 369, + 371, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 412, + 413, + 414, + 417, + 418, + 419, + 420, + 421, + 423, + 425, + 426, + 427, + 429, + 431, + 433, + 435, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 445, + 446, + 447, + 448, + 450, + 452, + 454, + 456, + 458, + 460, + 462, + 464, + 466, + 467, + 469, + 471, + 473 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Config.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Gpio.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Logger.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "MqttReceiver.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "MqttTopics.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Network.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "NetworkLock.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "NetworkOpener.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "NukiOpenerWrapper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "NukiWrapper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Ota.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Pins.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "PreferencesKeys.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "PresenceDetection.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "QueryCommand.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "RestartReason.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "WebCfgServer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "WebCfgServerConstants.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/AsyncTCP/src/AsyncTCP.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/BleScanner/src/BleInterfaces.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/BleScanner/src/BleScanner.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Crc16/Crc16.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/MqttLogger/src/MqttLogger.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WiFiManager/WiFiManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WiFiManager/wm_consts_en.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WiFiManager/wm_strings_en.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/nuki_ble/src/NukiBle.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/nuki_ble/src/NukiBle.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/nuki_ble/src/NukiConstants.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/nuki_ble/src/NukiDataTypes.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/nuki_ble/src/NukiLock.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/nuki_ble/src/NukiLockConstants.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/nuki_ble/src/NukiLockUtils.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/nuki_ble/src/NukiOpener.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/nuki_ble/src/NukiOpenerConstants.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/nuki_ble/src/NukiOpenerUtils.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/nuki_ble/src/NukiUtils.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "networkDevices/ClientSyncW5500.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "networkDevices/NetworkDevice.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "networkDevices/W5500Device.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "networkDevices/WifiDevice.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "networkDevices/espMqttClientW5500.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/Dhcp.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/Dhcp.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/Dns.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/Dns.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/Ethernet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/Ethernet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/EthernetClient.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/EthernetClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/EthernetServer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/EthernetServer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/EthernetUdp.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/EthernetUdp.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/socket.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/Ethernet/src/utility/w5100.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/Ethernet/src/utility/w5100.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/HIDKeyboardTypes.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/HIDTypes.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLE2904.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLE2904.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEAddress.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEAddress.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEAdvertisedDevice.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEAdvertisedDevice.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEAdvertising.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEAdvertising.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEAttValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEBeacon.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEBeacon.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLECharacteristic.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLECharacteristic.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEClient.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEConnInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEDescriptor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEDescriptor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEDevice.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEDevice.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEEddystoneTLM.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEEddystoneTLM.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEEddystoneURL.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEEddystoneURL.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEExtAdvertising.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEExtAdvertising.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEHIDDevice.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEHIDDevice.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLELog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLERemoteCharacteristic.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLERemoteCharacteristic.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLERemoteDescriptor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLERemoteDescriptor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLERemoteService.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLERemoteService.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEScan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEScan.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLESecurity.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLESecurity.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEServer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEServer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEService.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEService.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEUUID.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEUUID.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/NimBLE-Arduino/src/NimBLEUtils.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/NimBLEUtils.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/console/console.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/esp_port/esp-hci/include/esp_compiler.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/esp_port/esp-hci/include/esp_nimble_hci.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/esp_port/esp-hci/src/esp_nimble_hci.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/esp_port/port/include/esp_nimble_cfg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/esp_port/port/include/esp_nimble_mem.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/esp_port/port/src/esp_nimble_mem.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/aes.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/cbc_mode.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ccm_mode.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/cmac_mode.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/constants.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ctr_mode.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ctr_prng.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ecc.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ecc_dh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ecc_dsa.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/ecc_platform_specific.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/hmac.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/hmac_prng.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/sha256.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/include/tinycrypt/utils.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/aes_decrypt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/aes_encrypt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/cbc_mode.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ccm_mode.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/cmac_mode.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ctr_mode.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ctr_prng.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_dh.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_dsa.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/ecc_platform_specific.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/hmac.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/hmac_prng.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/sha256.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/ext/tinycrypt/src/utils.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_hw.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_adv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_conn.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_ctrl.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_hci.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_iso.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_resolv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_rfmgmt.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_scan.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_sched.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_sync.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_test.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_trace.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_utils.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_ll_whitelist.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_phy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/include/controller/ble_phy_trace.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_adv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_conn.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_conn_hci.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_conn_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_ctrl.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_dtm.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_dtm_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_hci.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_hci_ev.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_iso.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_rand.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_resolv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_rfmgmt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_scan.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_sched.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_supp_cmd.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_sync.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_trace.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_utils.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/controller/src/ble_ll_whitelist.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf51/include/ble/xcvr.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf51/src/ble_hw.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf51/src/ble_phy.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf52/include/ble/xcvr.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf52/src/ble_hw.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf52/src/ble_phy.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/drivers/nrf52/src/ble_phy_trace.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_att.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_eddystone.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_gap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_gatt.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_adv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_hci.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_id.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_log.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_mbuf.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_pvcy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_hs_stop.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_ibeacon.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_l2cap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_monitor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_sm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_store.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/include/host/ble_uuid.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/access.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/atomic.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/cdb.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/cfg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/cfg_cli.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/cfg_srv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/glue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/health_cli.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/health_srv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/heartbeat.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/main.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/mesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/model_cli.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/model_srv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/porting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/proxy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/slist.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/include/mesh/testing.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/access.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/access.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/adv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/adv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/aes-ccm.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/app_keys.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/app_keys.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/atomic.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/beacon.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/beacon.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cdb.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg_cli.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/cfg_srv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/crypto.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/crypto.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/foundation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/friend.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/friend.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/glue.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/health_cli.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/health_srv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/heartbeat.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/heartbeat.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/light_model.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/light_model.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/lpn.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/lpn.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/mesh.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/mesh_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/model_cli.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/model_srv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/net.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/net.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/nodes.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/nodes.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/pb_adv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/pb_gatt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov_bearer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/prov_device.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/provisioner.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/provisioner.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/proxy.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/proxy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/rpl.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/rpl.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/settings.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/settings.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/shell.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/shell.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/subnet.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/subnet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/transport.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/mesh/src/transport.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/ans/include/services/ans/ble_svc_ans.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/ans/src/ble_svc_ans.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/bas/include/services/bas/ble_svc_bas.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/bas/src/ble_svc_bas.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/dis/include/services/dis/ble_svc_dis.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/dis/src/ble_svc_dis.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/gap/include/services/gap/ble_svc_gap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/gap/src/ble_svc_gap.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/gatt/include/services/gatt/ble_svc_gatt.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/gatt/src/ble_svc_gatt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/ias/include/services/ias/ble_svc_ias.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/ias/src/ble_svc_ias.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/ipss/include/services/ipss/ble_svc_ipss.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/ipss/src/ble_svc_ipss.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/lls/include/services/lls/ble_svc_lls.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/services/lls/src/ble_svc_lls.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_clt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_cmd.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_cmd_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_att_svr.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_eddystone.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gap.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gap_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gatt_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gattc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gatts.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_gatts_lcl.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_adv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_adv_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_atomic.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_atomic_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_cfg.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_conn.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_conn_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_flow.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_flow_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci_cmd.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci_evt.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_hci_util.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_id.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_id_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_log.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_mbuf.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_mbuf_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_misc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_mqueue.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_periodic_sync.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_periodic_sync_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_pvcy.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_pvcy_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_resolv.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_resolv_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_shutdown.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_startup.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_startup_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_hs_stop.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_ibeacon.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap_coc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap_coc_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap_sig.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap_sig_cmd.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_l2cap_sig_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_monitor.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_monitor_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_alg.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_cmd.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_lgcy.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_sm_sc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_store.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_store_util.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_uuid.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/src/ble_uuid_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/store/config/include/store/config/ble_store_config.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/store/config/src/ble_store_config.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/store/config/src/ble_store_config_conf.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/store/config/src/ble_store_config_priv.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/store/config/src/ble_store_nvs.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/util/include/host/util/util.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/host/util/src/addr.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/ble.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/ble_hci_trans.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/hci_common.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/nimble_npl.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/nimble_opt.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/include/nimble/nimble_opt_auto.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/transport/ram/include/transport/ram/ble_hci_ram.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/nimble/transport/ram/src/ble_hci_ram.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/hal/hal_timer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/log/log.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/log_common/ignore.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/log_common/log_common.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/logcfg/logcfg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/mem/mem.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/modlog/modlog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/nimble/nimble_port.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/endian.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os_cputime.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os_error.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os_mbuf.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os_mempool.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/os_trace_api.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/queue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/os/util.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/stats/stats.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/syscfg/syscfg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/sysflash/sysflash.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/include/sysinit/sysinit.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/endian.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/hal_timer.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/hal_uart.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/mem.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/nimble_port.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_cputime.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_cputime_pwr2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_mbuf.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_mempool.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/nimble/src/os_msys_init.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/npl/freertos/include/nimble/nimble_npl_os.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/npl/freertos/include/nimble/nimble_port_freertos.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/npl/freertos/include/nimble/npl_freertos.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/npl/freertos/src/nimble_port_freertos.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "lib/NimBLE-Arduino/src/nimble/porting/npl/freertos/src/npl_os_freertos.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimconfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/NimBLE-Arduino/src/nimconfig_rename.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/EthClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/EthServer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/HTTP_Method.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/Parsing.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/Uri.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/WebServer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/WebServer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/detail/RequestHandler.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/detail/RequestHandlersImpl.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/detail/mimetable.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/detail/mimetable.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/hardware/W5500EthClient.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/hardware/W5500EthClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/hardware/W5500EthServer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/hardware/W5500EthServer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/hardware/WifiEthClient.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/hardware/WifiEthClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/WebServer/src/hardware/WifiEthServer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/hardware/WifiEthServer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/uri/UriBraces.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/uri/UriGlob.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/WebServer/src/uri/UriRegex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Config.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Helpers.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Logging.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/MqttClient.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/MqttClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/MqttClientSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Outbox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Packets/Constants.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Packets/Packet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Packets/Packet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Packets/Parser.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Packets/Parser.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Packets/RemainingLength.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Packets/RemainingLength.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Packets/String.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Packets/String.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Transport/ClientAsync.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Transport/ClientAsync.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Transport/ClientPosix.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Transport/ClientPosix.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Transport/ClientSecureSync.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Transport/ClientSecureSync.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Transport/ClientSync.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Transport/ClientSync.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/Transport/IPAddress.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Transport/IPAddress.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/Transport/Transport.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/TypeDefs.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/TypeDefs.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/espMqttClient.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/espMqttClient.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "lib/espMqttClient/src/espMqttClientAsync.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "lib/espMqttClient/src/espMqttClientAsync.h", + "sourceGroupIndex" : 1 + } + ], + "type" : "EXECUTABLE" +} diff --git a/bla/.cmake/api/v1/reply/target-upload-nuki_hub-Release-c98640c0d2877c043744.json b/bla/.cmake/api/v1/reply/target-upload-nuki_hub-Release-c98640c0d2877c043744.json new file mode 100644 index 0000000..fba437c --- /dev/null +++ b/bla/.cmake/api/v1/reply/target-upload-nuki_hub-Release-c98640c0d2877c043744.json @@ -0,0 +1,88 @@ +{ + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "target_enable_arduino_upload", + "add_dependencies" + ], + "files" : + [ + "/home/phr/workspace/sdk/Arduino-CMake-Toolchain/Arduino/System/BoardBuildTargets.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 132, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 313, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 324, + "parent" : 1 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 3, + "id" : "nuki_hub::@6890427a1f51a3e7e1df" + } + ], + "id" : "upload-nuki_hub::@6890427a1f51a3e7e1df", + "name" : "upload-nuki_hub", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/upload-nuki_hub", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/upload-nuki_hub.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/bla/.cmake/api/v1/reply/toolchains-v1-e8f6d06356f48dbf4b3e.json b/bla/.cmake/api/v1/reply/toolchains-v1-e8f6d06356f48dbf4b3e.json new file mode 100644 index 0000000..6ad80d0 --- /dev/null +++ b/bla/.cmake/api/v1/reply/toolchains-v1-e8f6d06356f48dbf4b3e.json @@ -0,0 +1,248 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "implicit" : {}, + "path" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-gcc" + }, + "language" : "C" + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/newlib/platform_include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/freertos/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/freertos/include/esp_additions/freertos", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/freertos/port/xtensa/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/freertos/include/esp_additions", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_hw_support/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_hw_support/include/soc", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_hw_support/include/soc/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_hw_support/port/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_hw_support/port/esp32/private_include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/heap/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/log/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/lwip/include/apps", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/lwip/include/apps/sntp", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/lwip/lwip/src/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/lwip/port/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/lwip/port/esp32/include/arch", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/soc/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/soc/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/soc/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/hal/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/hal/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/hal/platform_port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_rom/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_rom/include/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_rom/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_common/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_system/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_system/port/soc", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_system/port/public_compat", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/xtensa/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/xtensa/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/driver/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/driver/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_pm/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_ringbuf/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/efuse/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/efuse/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/vfs/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_wifi/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_event/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_netif/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_eth/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/tcpip_adapter/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_phy/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_phy/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_ipc/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/app_trace/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_timer/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/mbedtls/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/mbedtls/mbedtls/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/mbedtls/esp_crt_bundle/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/app_update/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/spi_flash/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bootloader_support/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/nvs_flash/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/pthread/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_gdbstub/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_gdbstub/xtensa", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_gdbstub/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/espcoredump/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/espcoredump/include/port/xtensa", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/wpa_supplicant/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/wpa_supplicant/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/wpa_supplicant/esp_supplicant/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/ieee802154/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/console", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/asio/asio/asio/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/asio/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/common/osi/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/include/esp32/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/common/api/include/api", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/common/btc/profile/esp/blufi/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/common/btc/profile/esp/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/host/bluedroid/api/include/api", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_common/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_common/tinycrypt/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_core", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_core/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_core/storage", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/btc/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_models/common/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_models/client/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/mesh_models/server/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/api/core/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/api/models/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/bt/esp_ble_mesh/api", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/cbor/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/unity/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/unity/unity/src", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/cmock/CMock/src", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/coap/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/coap/libcoap/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/nghttp/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/nghttp/nghttp2/lib/includes", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-tls", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-tls/esp-tls-crypto", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_adc_cal/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_hid/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/tcp_transport/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_http_client/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_http_server/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_https_ota/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_https_server/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_lcd/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_lcd/interface", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/protobuf-c/protobuf-c", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/protocomm/include/common", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/protocomm/include/security", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/protocomm/include/transports", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/mdns/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_local_ctrl/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/sdmmc/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_serial_slave_link/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_websocket_client/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/expat/expat/expat/lib", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/expat/port/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/wear_levelling/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/fatfs/diskio", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/fatfs/vfs", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/fatfs/src", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/freemodbus/common/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/idf_test/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/idf_test/include/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/jsmn/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/json/cJSON", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/libsodium/libsodium/src/libsodium/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/libsodium/port_include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/mqtt/esp-mqtt/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/openssl/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/perfmon/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/spiffs/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/ulp/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/wifi_provisioning/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/rmaker_common/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/json_parser/upstream/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/json_parser/upstream", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/json_generator/upstream", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_schedule/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_rainmaker/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/gpio_button/button/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/qrcode/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/ws2812_led", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_diagnostics/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/rtc_store/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_insights/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/dotprod/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/support/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/hann/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/blackman/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/blackman_harris/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/blackman_nuttall/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/nuttall/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/windows/flat_top/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/iir/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/fir/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/add/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/sub/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/mul/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/addc/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/mulc/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/math/sqrt/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/matrix/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/fft/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/dct/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/conv/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/common/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/kalman/ekf/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dsp/modules/kalman/ekf_imu13states/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp_littlefs/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/tool", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/typedef", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/image", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/math", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/nn", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/layer", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/detect", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-dl/include/model_zoo", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-sr/src/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-sr/esp-tts/esp_tts_chinese/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp-sr/include/esp32", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp32-camera/driver/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/esp32-camera/conversions/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/include/fb_gfx/include", + "/home/phr/.arduino15/packages/esp32/hardware/esp32/2.0.6/tools/sdk/esp32/qio_qspi/include", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/xtensa-esp32-elf/include/c++/8.4.0", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/xtensa-esp32-elf/include/c++/8.4.0/xtensa-esp32-elf/no-rtti", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/xtensa-esp32-elf/include/c++/8.4.0/backward", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/lib/gcc/xtensa-esp32-elf/8.4.0/include", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/lib/gcc/xtensa-esp32-elf/8.4.0/include-fixed", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/xtensa-esp32-elf/sys-include", + "/home/phr/.arduino15/packages/esp32_orig/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/xtensa-esp32-elf/include" + ], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "/home/phr/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2-patch5/bin/xtensa-esp32-elf-g++", + "version" : "8.4.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/bla/.ninja_deps.recompact b/bla/.ninja_deps.recompact new file mode 100644 index 0000000..e5675ec Binary files /dev/null and b/bla/.ninja_deps.recompact differ diff --git a/bla/.ninja_log b/bla/.ninja_log new file mode 100644 index 0000000..1fc148d --- /dev/null +++ b/bla/.ninja_log @@ -0,0 +1 @@ +# ninja log v5